🎨 修复分账执行接口金额类型错误问题

This commit is contained in:
四叶草
2023-09-02 15:45:42 +00:00
committed by Binary Wang
parent c872fa96fa
commit 189bcdc1d3
2 changed files with 11 additions and 1 deletions

View File

@ -127,6 +127,16 @@ public class ProfitSharingV3Request implements Serializable {
@SerializedName("account")
private String account;
/**
* <pre>
* 字段名:分账金额
* 是否必填:是
* 描述: 分账金额,单位为分,只能为整数,不能超过原订单支付金额及最大分账比例金额
* </pre>
*/
@SerializedName("amount")
private Integer amount;
/**
* <pre>
* 字段名:分账个人接收方姓名

View File

@ -133,7 +133,7 @@ public class ProfitSharingResult extends BaseWxPayResult implements Serializable
* </pre>
*/
@SerializedName("amount")
private Long amount;
private Integer amount;
/**
* <pre>