Skip to content

Commit 14c3435

Browse files
authored
🎨 #3111 【微信支付】分账相关接口增加子商户应用ID字段
1 parent d433191 commit 14c3435

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ public class ProfitSharingReceiver implements Serializable {
4444
@SerializedName("appid")
4545
private String appid;
4646

47+
/**
48+
* <pre>
49+
* 字段名:子商户应用ID
50+
* 是否必填:否
51+
* 描述:子商户的公众账号ID,分账接收方类型包含PERSONAL_SUB_OPENID时必填
52+
* </pre>
53+
*/
54+
@SerializedName("sub_appid")
55+
private String subAppid;
56+
4757
/**
4858
* <pre>
4959
* 字段名:分账接收方类型

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ public class ProfitSharingRequest implements Serializable {
4444
@SerializedName("appid")
4545
private String appid;
4646

47+
/**
48+
* <pre>
49+
* 字段名:子商户应用ID
50+
* 是否必填:否
51+
* 描述:子商户的公众账号ID,分账接收方类型包含PERSONAL_SUB_OPENID时必填
52+
* </pre>
53+
*/
54+
@SerializedName("sub_appid")
55+
private String subAppid;
56+
4757
/**
4858
* <pre>
4959
* 字段名:微信订单号

0 commit comments

Comments
 (0)