Skip to content

Commit 8b72253

Browse files
authored
🎨 #2747【微信支付】服务商分账解冻剩余资金接口增加参数sub_mchid
1 parent 8f30150 commit 8b72253

File tree

6 files changed

+61
-0
lines changed

6 files changed

+61
-0
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharingV3/ProfitSharingReceiver.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@
2323
public class ProfitSharingReceiver implements Serializable {
2424
private static final long serialVersionUID = -4391888575149767840L;
2525

26+
27+
/**
28+
* <pre>
29+
* 字段名:子商户号
30+
* 是否必填:是
31+
* 描述:微信支付分配的子商户号,即分账的出资商户号。
32+
* </pre>
33+
*/
34+
@SerializedName("sub_mchid")
35+
private String subMchId;
36+
2637
/**
2738
* <pre>
2839
* 字段名:应用ID

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharingV3/ProfitSharingRequest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@
2323
public class ProfitSharingRequest implements Serializable {
2424
private static final long serialVersionUID = 3644929701624280800L;
2525

26+
/**
27+
* <pre>
28+
* 字段名:子商户号
29+
* 是否必填:是
30+
* 描述:微信支付分配的子商户号,即分账的出资商户号。
31+
* </pre>
32+
*/
33+
@SerializedName("sub_mchid")
34+
private String subMchId;
35+
2636
/**
2737
* <pre>
2838
* 字段名:应用ID

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharingV3/ProfitSharingResult.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@
1818
public class ProfitSharingResult implements Serializable {
1919
private static final long serialVersionUID = -6201692412535987502L;
2020

21+
/**
22+
* <pre>
23+
* 字段名:子商户号
24+
* 是否必填:是
25+
* 描述:微信支付分配的子商户号,即分账的出资商户号。
26+
* </pre>
27+
*/
28+
@SerializedName("sub_mchid")
29+
private String subMchId;
30+
2131
/**
2232
* <pre>
2333
* 字段名:微信订单号

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharingV3/ProfitSharingReturnRequest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@
2222
public class ProfitSharingReturnRequest implements Serializable {
2323
private static final long serialVersionUID = -2175582517588397426L;
2424

25+
/**
26+
* <pre>
27+
* 字段名:子商户号
28+
* 是否必填:是
29+
* 描述:分账回退的接收商户,对应原分账出资的分账方商户,填写微信支付分配的商户号
30+
* </pre>
31+
*/
32+
@SerializedName("sub_mchid")
33+
private String subMchId;
34+
2535
/**
2636
* <pre>
2737
* 字段名:微信分账单号

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharingV3/ProfitSharingReturnResult.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@
1616
public class ProfitSharingReturnResult implements Serializable {
1717
private static final long serialVersionUID = -2175582517588397426L;
1818

19+
/**
20+
* <pre>
21+
* 字段名:子商户号
22+
* 是否必填:是
23+
* 描述:分账回退的接收商户,对应原分账出资的分账方商户,填写微信支付分配的商户号
24+
* </pre>
25+
*/
26+
@SerializedName("sub_mchid")
27+
private String subMchId;
28+
1929
/**
2030
* <pre>
2131
* 字段名:微信分账单号

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharingV3/ProfitSharingUnfreezeRequest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@
2222
public class ProfitSharingUnfreezeRequest implements Serializable {
2323
private static final long serialVersionUID = 6835471990040104843L;
2424

25+
/**
26+
* <pre>
27+
* 字段名:子商户号
28+
* 是否必填:是
29+
* 描述:微信支付分配的子商户号,即分账的出资商户号。
30+
* </pre>
31+
*/
32+
@SerializedName("sub_mchid")
33+
private String subMchId;
34+
2535
/**
2636
* <pre>
2737
* 字段名:微信订单号

0 commit comments

Comments
 (0)