mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🎨 【微信支付】分账模块解冻剩余资金接口返回类增加几个字段
This commit is contained in:
parent
62775b9a44
commit
51b14f9a89
@ -17,6 +17,16 @@ import java.util.List;
|
||||
public class ProfitSharingUnfreezeResult implements Serializable {
|
||||
private static final long serialVersionUID = 5053171678880645337L;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:子商户号
|
||||
* 是否必填:是
|
||||
* 描述:微信支付分配的子商户号,即分账的出资商户号
|
||||
* </pre>
|
||||
*/
|
||||
@SerializedName("sub_mchid")
|
||||
private String subMchid;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:微信订单号
|
||||
@ -164,5 +174,15 @@ public class ProfitSharingUnfreezeResult implements Serializable {
|
||||
*/
|
||||
@SerializedName("finish_time")
|
||||
private String finishTime;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:分账明细单号
|
||||
* 是否必填:是
|
||||
* 描述:微信分账明细单号,每笔分账业务执行的明细单号,可与资金账单对账使用
|
||||
* </pre>
|
||||
*/
|
||||
@SerializedName("detail_id")
|
||||
private String detailId;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user