🎨 【微信支付】退款查询接口的结果类增加退款总金额、代金券退款总金额、用户退款金额等字段
This commit is contained in:
@@ -79,6 +79,45 @@ public class WxPayRefundQueryResult extends BaseWxPayResult implements Serializa
|
||||
@XStreamAlias("total_fee")
|
||||
private Integer totalFee;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:退款总金额.
|
||||
* 变量名:refund_fee
|
||||
* 是否必填:是
|
||||
* 类型:Int
|
||||
* 示例值:100
|
||||
* 描述:各退款单的退款金额累加,单位为分,只能为整数,
|
||||
* </pre>
|
||||
*/
|
||||
@XStreamAlias("refund_fee")
|
||||
private Integer refundFee;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:代金券退款总金额.
|
||||
* 变量名:coupon_refund_fee
|
||||
* 是否必填:是
|
||||
* 类型:Int
|
||||
* 示例值:100
|
||||
* 描述:各退款单的代金券退款金额累加,单位为分,只能为整数,
|
||||
* </pre>
|
||||
*/
|
||||
@XStreamAlias("coupon_refund_fee")
|
||||
private Integer couponRefundFee;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:用户退款金额.
|
||||
* 变量名:cash_refund_fee
|
||||
* 是否必填:是
|
||||
* 类型:Int
|
||||
* 示例值:100
|
||||
* 描述:退款给用户的金额,不包含所有优惠券金额,单位为分,只能为整数,
|
||||
* </pre>
|
||||
*/
|
||||
@XStreamAlias("cash_refund_fee")
|
||||
private Integer cashRefundFee;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:应结订单金额.
|
||||
|
||||
Reference in New Issue
Block a user