Skip to content

Commit

Permalink
🎨 #2747【微信支付】服务商分账解冻剩余资金接口增加参数sub_mchid
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongjun96 authored Jul 21, 2022
1 parent 8f30150 commit 8b72253
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@
public class ProfitSharingReceiver implements Serializable {
private static final long serialVersionUID = -4391888575149767840L;


/**
* <pre>
* 字段名:子商户号
* 是否必填:是
* 描述:微信支付分配的子商户号,即分账的出资商户号。
* </pre>
*/
@SerializedName("sub_mchid")
private String subMchId;

/**
* <pre>
* 字段名:应用ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
public class ProfitSharingRequest implements Serializable {
private static final long serialVersionUID = 3644929701624280800L;

/**
* <pre>
* 字段名:子商户号
* 是否必填:是
* 描述:微信支付分配的子商户号,即分账的出资商户号。
* </pre>
*/
@SerializedName("sub_mchid")
private String subMchId;

/**
* <pre>
* 字段名:应用ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@
public class ProfitSharingResult implements Serializable {
private static final long serialVersionUID = -6201692412535987502L;

/**
* <pre>
* 字段名:子商户号
* 是否必填:是
* 描述:微信支付分配的子商户号,即分账的出资商户号。
* </pre>
*/
@SerializedName("sub_mchid")
private String subMchId;

/**
* <pre>
* 字段名:微信订单号
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@
public class ProfitSharingReturnRequest implements Serializable {
private static final long serialVersionUID = -2175582517588397426L;

/**
* <pre>
* 字段名:子商户号
* 是否必填:是
* 描述:分账回退的接收商户,对应原分账出资的分账方商户,填写微信支付分配的商户号
* </pre>
*/
@SerializedName("sub_mchid")
private String subMchId;

/**
* <pre>
* 字段名:微信分账单号
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@
public class ProfitSharingReturnResult implements Serializable {
private static final long serialVersionUID = -2175582517588397426L;

/**
* <pre>
* 字段名:子商户号
* 是否必填:是
* 描述:分账回退的接收商户,对应原分账出资的分账方商户,填写微信支付分配的商户号
* </pre>
*/
@SerializedName("sub_mchid")
private String subMchId;

/**
* <pre>
* 字段名:微信分账单号
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@
public class ProfitSharingUnfreezeRequest implements Serializable {
private static final long serialVersionUID = 6835471990040104843L;

/**
* <pre>
* 字段名:子商户号
* 是否必填:是
* 描述:微信支付分配的子商户号,即分账的出资商户号。
* </pre>
*/
@SerializedName("sub_mchid")
private String subMchId;

/**
* <pre>
* 字段名:微信订单号
Expand Down

0 comments on commit 8b72253

Please sign in to comment.