zj
2024-06-03 4afe73cb84c5a609662b8b4ee20693de9b86b9a3
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package com.nq.vo.stockfutures;
 
 
import java.math.BigDecimal;
import java.util.Date;
 
public class CoinAdminListVO {
    private Integer id;
    private String coinName;
    private String coinCode;
    private String coinGid;
    private Integer dynamicRate;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private BigDecimal defaultRate;
    private Integer isUse;
    private Date addTime;
    private String tDesc;
    private String nowPrice;
 
    public void setCoinName(String coinName) {
        this.coinName = coinName;
    }
 
    public void setCoinCode(String coinCode) {
        this.coinCode = coinCode;
    }
 
    public void setCoinGid(String coinGid) {
        this.coinGid = coinGid;
    }
 
    public void setDynamicRate(Integer dynamicRate) {
        this.dynamicRate = dynamicRate;
    }
 
    public void setDefaultRate(BigDecimal defaultRate) {
        this.defaultRate = defaultRate;
    }
 
    public void setIsUse(Integer isUse) {
        this.isUse = isUse;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public void setTDesc(String tDesc) {
        this.tDesc = tDesc;
    }
 
    public void setNowPrice(String nowPrice) {
        this.nowPrice = nowPrice;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof CoinAdminListVO)) return false;
        CoinAdminListVO other = (CoinAdminListVO) o;
        if (!other.canEqual(this)) return false;
        Object this$id = getId(), other$id = other.getId();
        if ((this$id == null) ? (other$id != null) : !this$id.equals(other$id)) return false;
        Object this$coinName = getCoinName(), other$coinName = other.getCoinName();
        if ((this$coinName == null) ? (other$coinName != null) : !this$coinName.equals(other$coinName)) return false;
        Object this$coinCode = getCoinCode(), other$coinCode = other.getCoinCode();
        if ((this$coinCode == null) ? (other$coinCode != null) : !this$coinCode.equals(other$coinCode)) return false;
        Object this$coinGid = getCoinGid(), other$coinGid = other.getCoinGid();
        if ((this$coinGid == null) ? (other$coinGid != null) : !this$coinGid.equals(other$coinGid)) return false;
        Object this$dynamicRate = getDynamicRate(), other$dynamicRate = other.getDynamicRate();
        if ((this$dynamicRate == null) ? (other$dynamicRate != null) : !this$dynamicRate.equals(other$dynamicRate))
            return false;
        Object this$defaultRate = getDefaultRate(), other$defaultRate = other.getDefaultRate();
        if ((this$defaultRate == null) ? (other$defaultRate != null) : !this$defaultRate.equals(other$defaultRate))
            return false;
        Object this$isUse = getIsUse(), other$isUse = other.getIsUse();
        if ((this$isUse == null) ? (other$isUse != null) : !this$isUse.equals(other$isUse)) return false;
        Object this$addTime = getAddTime(), other$addTime = other.getAddTime();
        if ((this$addTime == null) ? (other$addTime != null) : !this$addTime.equals(other$addTime)) return false;
        Object this$tDesc = getTDesc(), other$tDesc = other.getTDesc();
        if ((this$tDesc == null) ? (other$tDesc != null) : !this$tDesc.equals(other$tDesc)) return false;
        Object this$nowPrice = getNowPrice(), other$nowPrice = other.getNowPrice();
        return !((this$nowPrice == null) ? (other$nowPrice != null) : !this$nowPrice.equals(other$nowPrice));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof CoinAdminListVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $id = getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        Object $coinName = getCoinName();
        result = result * 59 + (($coinName == null) ? 43 : $coinName.hashCode());
        Object $coinCode = getCoinCode();
        result = result * 59 + (($coinCode == null) ? 43 : $coinCode.hashCode());
        Object $coinGid = getCoinGid();
        result = result * 59 + (($coinGid == null) ? 43 : $coinGid.hashCode());
        Object $dynamicRate = getDynamicRate();
        result = result * 59 + (($dynamicRate == null) ? 43 : $dynamicRate.hashCode());
        Object $defaultRate = getDefaultRate();
        result = result * 59 + (($defaultRate == null) ? 43 : $defaultRate.hashCode());
        Object $isUse = getIsUse();
        result = result * 59 + (($isUse == null) ? 43 : $isUse.hashCode());
        Object $addTime = getAddTime();
        result = result * 59 + (($addTime == null) ? 43 : $addTime.hashCode());
        Object $tDesc = getTDesc();
        result = result * 59 + (($tDesc == null) ? 43 : $tDesc.hashCode());
        Object $nowPrice = getNowPrice();
        return result * 59 + (($nowPrice == null) ? 43 : $nowPrice.hashCode());
    }
 
    public String toString() {
        return "CoinAdminListVO(id=" + getId() + ", coinName=" + getCoinName() + ", coinCode=" + getCoinCode() + ", coinGid=" + getCoinGid() + ", dynamicRate=" + getDynamicRate() + ", defaultRate=" + getDefaultRate() + ", isUse=" + getIsUse() + ", addTime=" + getAddTime() + ", tDesc=" + getTDesc() + ", nowPrice=" + getNowPrice() + ")";
    }
 
 
    public Integer getId() {
        return this.id;
    }
 
    public String getCoinName() {
        return this.coinName;
    }
 
    public String getCoinCode() {
        return this.coinCode;
    }
 
    public String getCoinGid() {
        return this.coinGid;
    }
 
    public Integer getDynamicRate() {
        return this.dynamicRate;
    }
 
    public BigDecimal getDefaultRate() {
        return this.defaultRate;
    }
 
    public Integer getIsUse() {
        return this.isUse;
    }
 
    public Date getAddTime() {
        return this.addTime;
    }
 
    public String getTDesc() {
        return this.tDesc;
    }
 
 
    public String getNowPrice() {
        return this.nowPrice;
    }
}