peternameyakj
2025-01-06 4c82733d79b03ee1d5304398b0598d826e6fd0e9
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package project.wallet.rate;
 
import javax.persistence.Column;
import javax.persistence.Table;
 
import kernel.bo.EntityObject;
 
/**
 * 
 * 货币汇率。Wallet汇WalletExtend或WalletExtend汇Wallet的汇率值
 */
@Table(name="T_EXCHANGE_RATE")
public class ExchangeRate extends EntityObject {
 
    public static final String IN = "in";
    
    public static final String OUT = "out";
 
    private static final long serialVersionUID = 5591037881881001013L;
    
    /**
     * out兑出 in 兑入
     */
    @Column(name="OUT_OR_IN")
    private String out_or_in;
    
    /**
     * 汇率
     */
    @Column(name="RATA")
    private double rata;
 
    /**
     * 货币,见Constants定义
     */
    @Column(name="CURRENCY")
    private String currency;
 
    @Column(name="NAME")
    private String name;
 
    /**
     * 货币符号
     */
    @Column(name="CURRENCY_SYMBOL")
    private String currency_symbol;
 
    public String getOut_or_in() {
        return out_or_in;
    }
 
    public void setOut_or_in(String out_or_in) {
        this.out_or_in = out_or_in;
    }
 
    public double getRata() {
        return rata;
    }
 
    public void setRata(double rata) {
        this.rata = rata;
    }
 
    public String getCurrency() {
        return currency;
    }
 
    public void setCurrency(String currency) {
        this.currency = currency;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCurrency_symbol() {
        return currency_symbol;
    }
 
    public void setCurrency_symbol(String currency_symbol) {
        this.currency_symbol = currency_symbol;
    }
 
}