liulin
2025-07-02 b9f0f641b85bbbfe74fc23efe4f4965586d9e3af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.lunhan.water.common.wechat.req;
 
public class WeiXinRefund_Amount {
    /**
     * 【退款金额】 退款金额,单位为分,只能为整数,不能超过原订单支付金额
     */
    private Integer refund;
 
    /**
     * 【原订单金额】 原支付交易的订单总金额,单位为分,只能为整数
     */
    private Integer total;
 
    /**
     * 【退款币种】 符合ISO 4217标准的三位字母代码,目前只支持人民币:CNY
     */
    private String currency;
 
    public Integer getRefund() {
        return refund;
    }
 
    public void setRefund(Integer refund) {
        this.refund = refund;
    }
 
    public Integer getTotal() {
        return total;
    }
 
    public void setTotal(Integer total) {
        this.total = total;
    }
 
    public String getCurrency() {
        return currency;
    }
 
    public void setCurrency(String currency) {
        this.currency = currency;
    }
}