Skip to content

微信支付-分账:添加sub_mchid #2748

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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