File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/result Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,45 @@ public class WxPayRefundQueryResult extends BaseWxPayResult implements Serializa
79
79
@ XStreamAlias ("total_fee" )
80
80
private Integer totalFee ;
81
81
82
+ /**
83
+ * <pre>
84
+ * 字段名:退款总金额.
85
+ * 变量名:refund_fee
86
+ * 是否必填:是
87
+ * 类型:Int
88
+ * 示例值:100
89
+ * 描述:各退款单的退款金额累加,单位为分,只能为整数,
90
+ * </pre>
91
+ */
92
+ @ XStreamAlias ("refund_fee" )
93
+ private Integer refundFee ;
94
+
95
+ /**
96
+ * <pre>
97
+ * 字段名:代金券退款总金额.
98
+ * 变量名:coupon_refund_fee
99
+ * 是否必填:是
100
+ * 类型:Int
101
+ * 示例值:100
102
+ * 描述:各退款单的代金券退款金额累加,单位为分,只能为整数,
103
+ * </pre>
104
+ */
105
+ @ XStreamAlias ("coupon_refund_fee" )
106
+ private Integer couponRefundFee ;
107
+
108
+ /**
109
+ * <pre>
110
+ * 字段名:用户退款金额.
111
+ * 变量名:cash_refund_fee
112
+ * 是否必填:是
113
+ * 类型:Int
114
+ * 示例值:100
115
+ * 描述:退款给用户的金额,不包含所有优惠券金额,单位为分,只能为整数,
116
+ * </pre>
117
+ */
118
+ @ XStreamAlias ("cash_refund_fee" )
119
+ private Integer cashRefundFee ;
120
+
82
121
/**
83
122
* <pre>
84
123
* 字段名:应结订单金额.
You can’t perform that action at this time.
0 commit comments