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
c872fa96fa
commit
189bcdc1d3
@ -127,6 +127,16 @@ public class ProfitSharingV3Request implements Serializable {
|
|||||||
@SerializedName("account")
|
@SerializedName("account")
|
||||||
private String account;
|
private String account;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* 字段名:分账金额
|
||||||
|
* 是否必填:是
|
||||||
|
* 描述: 分账金额,单位为分,只能为整数,不能超过原订单支付金额及最大分账比例金额
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
|
@SerializedName("amount")
|
||||||
|
private Integer amount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:分账个人接收方姓名
|
* 字段名:分账个人接收方姓名
|
||||||
|
@ -133,7 +133,7 @@ public class ProfitSharingResult extends BaseWxPayResult implements Serializable
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName("amount")
|
@SerializedName("amount")
|
||||||
private Long amount;
|
private Integer amount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
|
Loading…
Reference in New Issue
Block a user