Skip to content

Commit 7af433c

Browse files
author
zhuzhuodong
committed
分账接口增加amount、description参数
1 parent 4e46486 commit 7af433c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharing/request/ProfitSharingReceiverV3Request.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import com.github.binarywang.wxpay.v3.SpecEncrypt;
44
import com.google.gson.annotations.SerializedName;
5+
56
import lombok.*;
67

78
import java.io.Serializable;
@@ -17,6 +18,7 @@
1718
@NoArgsConstructor
1819
@AllArgsConstructor
1920
public class ProfitSharingReceiverV3Request implements Serializable {
21+
2022
private static final long serialVersionUID = 1L;
2123
/**
2224
* <pre>
@@ -88,6 +90,26 @@ public class ProfitSharingReceiverV3Request implements Serializable {
8890
@SpecEncrypt
8991
private String name;
9092

93+
/**
94+
* <pre>
95+
* 字段名:分账金额
96+
* 是否必填:是
97+
* 描述:分账金额,单位为分,只能为整数,不能超过原订单支付金额及最大分账比例金额。调整最大分账比例:特约商户登录商户平台,进入以下页面:产品中心-授权的产品-分账授权
98+
* </pre>
99+
*/
100+
@SerializedName("amount")
101+
private Integer amount;
102+
103+
/**
104+
* <pre>
105+
* 字段名:分账描述
106+
* 是否必填:是
107+
* 描述:分账的原因描述,会在查询分账结果接口和分账账单中原样返回
108+
* </pre>
109+
*/
110+
@SerializedName("description")
111+
private String description;
112+
91113
/**
92114
* <pre>
93115
* 字段名:与分账方的关系类型

0 commit comments

Comments
 (0)