mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🐛 #1766 修复电商收付通请求分账结果类未添加相关注解的问题
* 微信收付通增加请求分账回退接口 * 修复请求分账结果未添加lombok注解
This commit is contained in:
parent
7c10cdd078
commit
b660bfd4a0
@ -1,6 +1,8 @@
|
|||||||
package com.github.binarywang.wxpay.bean.ecommerce;
|
package com.github.binarywang.wxpay.bean.ecommerce;
|
||||||
|
|
||||||
import com.google.gson.annotations.SerializedName;
|
import com.google.gson.annotations.SerializedName;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ -9,6 +11,8 @@ import java.io.Serializable;
|
|||||||
* @author: f00lish
|
* @author: f00lish
|
||||||
* @date: 2020/09/12
|
* @date: 2020/09/12
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
public class ProfitSharingResult implements Serializable {
|
public class ProfitSharingResult implements Serializable {
|
||||||
|
|
||||||
private static final long serialVersionUID = 9026456165403642050L;
|
private static final long serialVersionUID = 9026456165403642050L;
|
||||||
|
Loading…
Reference in New Issue
Block a user