Skip to content

Commit b660bfd

Browse files
authored
🐛 #1766 修复电商收付通请求分账结果类未添加相关注解的问题
* 微信收付通增加请求分账回退接口 * 修复请求分账结果未添加lombok注解
1 parent 7c10cdd commit b660bfd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/ecommerce/ProfitSharingResult.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package com.github.binarywang.wxpay.bean.ecommerce;
22

33
import com.google.gson.annotations.SerializedName;
4+
import lombok.Data;
5+
import lombok.NoArgsConstructor;
46

57
import java.io.Serializable;
68

@@ -9,6 +11,8 @@
911
* @author: f00lish
1012
* @date: 2020/09/12
1113
*/
14+
@Data
15+
@NoArgsConstructor
1216
public class ProfitSharingResult implements Serializable {
1317

1418
private static final long serialVersionUID = 9026456165403642050L;

0 commit comments

Comments
 (0)