liulin
2025-07-03 fb2f11d7d502ceacbe7fbed176bea4ab0f152f69
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
package com.lunhan.water.entity.dto.pay;
 
public class WeiXinPayNotifyDto_Amount {
    private Integer total;
    private String currency;
    private Integer payer_total;
    private String payer_currency;
 
    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;
    }
 
    public Integer getPayer_total() {
        return payer_total;
    }
 
    public void setPayer_total(Integer payer_total) {
        this.payer_total = payer_total;
    }
 
    public String getPayer_currency() {
        return payer_currency;
    }
 
    public void setPayer_currency(String payer_currency) {
        this.payer_currency = payer_currency;
    }
}