1
zj
2024-07-18 7c6c9e822f33ac120036af42fcf33b5b0e443351
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
package com.nq.vo.stockindex;
 
import lombok.Data;
 
import java.util.Date;
@Data
public class StockIndexVO {
    private Integer id;
    private String indexName;
    private String indexCode;
    private String indexGid;
    private Integer homeShow;
    private Integer listShow;
    private Integer transState;
    private Integer depositAmt;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private Integer transFee;
    private Integer eachPoint;
    private Integer minNum;
    private Integer maxNum;
    private Date addTime;
    private String tDesc;
    private String currentPoint;
    private String floatPoint;
    private String floatRate;
    /*是否添加自选:1、添加自选,0、未添加自选*/
    private String isOption;
 
    private String type;
 
    public void setIndexName(String indexName) {
        this.indexName = indexName;
    }
 
    public void setIndexCode(String indexCode) {
        this.indexCode = indexCode;
    }
 
    public void setIndexGid(String indexGid) {
        this.indexGid = indexGid;
    }
 
    public void setHomeShow(Integer homeShow) {
        this.homeShow = homeShow;
    }
 
    public void setListShow(Integer listShow) {
        this.listShow = listShow;
    }
 
    public void setTransState(Integer transState) {
        this.transState = transState;
    }
 
    public void setDepositAmt(Integer depositAmt) {
        this.depositAmt = depositAmt;
    }
 
    public void setTransFee(Integer transFee) {
        this.transFee = transFee;
    }
 
    public void setEachPoint(Integer eachPoint) {
        this.eachPoint = eachPoint;
    }
 
    public void setMinNum(Integer minNum) {
        this.minNum = minNum;
    }
 
    public void setMaxNum(Integer maxNum) {
        this.maxNum = maxNum;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public void setTDesc(String tDesc) {
        this.tDesc = tDesc;
    }
 
    public void setCurrentPoint(String currentPoint) {
        this.currentPoint = currentPoint;
    }
 
    public void setFloatPoint(String floatPoint) {
        this.floatPoint = floatPoint;
    }
 
    public void setFloatRate(String floatRate) {
        this.floatRate = floatRate;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof StockIndexVO)) return false;
        StockIndexVO other = (StockIndexVO) 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$indexName = getIndexName(), other$indexName = other.getIndexName();
        if ((this$indexName == null) ? (other$indexName != null) : !this$indexName.equals(other$indexName))
            return false;
        Object this$indexCode = getIndexCode(), other$indexCode = other.getIndexCode();
        if ((this$indexCode == null) ? (other$indexCode != null) : !this$indexCode.equals(other$indexCode))
            return false;
        Object this$indexGid = getIndexGid(), other$indexGid = other.getIndexGid();
        if ((this$indexGid == null) ? (other$indexGid != null) : !this$indexGid.equals(other$indexGid)) return false;
        Object this$homeShow = getHomeShow(), other$homeShow = other.getHomeShow();
        if ((this$homeShow == null) ? (other$homeShow != null) : !this$homeShow.equals(other$homeShow)) return false;
        Object this$listShow = getListShow(), other$listShow = other.getListShow();
        if ((this$listShow == null) ? (other$listShow != null) : !this$listShow.equals(other$listShow)) return false;
        Object this$transState = getTransState(), other$transState = other.getTransState();
        if ((this$transState == null) ? (other$transState != null) : !this$transState.equals(other$transState))
            return false;
        Object this$depositAmt = getDepositAmt(), other$depositAmt = other.getDepositAmt();
        if ((this$depositAmt == null) ? (other$depositAmt != null) : !this$depositAmt.equals(other$depositAmt))
            return false;
        Object this$transFee = getTransFee(), other$transFee = other.getTransFee();
        if ((this$transFee == null) ? (other$transFee != null) : !this$transFee.equals(other$transFee)) return false;
        Object this$eachPoint = getEachPoint(), other$eachPoint = other.getEachPoint();
        if ((this$eachPoint == null) ? (other$eachPoint != null) : !this$eachPoint.equals(other$eachPoint))
            return false;
        Object this$minNum = getMinNum(), other$minNum = other.getMinNum();
        if ((this$minNum == null) ? (other$minNum != null) : !this$minNum.equals(other$minNum)) return false;
        Object this$maxNum = getMaxNum(), other$maxNum = other.getMaxNum();
        if ((this$maxNum == null) ? (other$maxNum != null) : !this$maxNum.equals(other$maxNum)) 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$currentPoint = getCurrentPoint(), other$currentPoint = other.getCurrentPoint();
        if ((this$currentPoint == null) ? (other$currentPoint != null) : !this$currentPoint.equals(other$currentPoint))
            return false;
        Object this$floatPoint = getFloatPoint(), other$floatPoint = other.getFloatPoint();
        if ((this$floatPoint == null) ? (other$floatPoint != null) : !this$floatPoint.equals(other$floatPoint))
            return false;
        Object this$floatRate = getFloatRate(), other$floatRate = other.getFloatRate();
        return !((this$floatRate == null) ? (other$floatRate != null) : !this$floatRate.equals(other$floatRate));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof StockIndexVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $id = getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        Object $indexName = getIndexName();
        result = result * 59 + (($indexName == null) ? 43 : $indexName.hashCode());
        Object $indexCode = getIndexCode();
        result = result * 59 + (($indexCode == null) ? 43 : $indexCode.hashCode());
        Object $indexGid = getIndexGid();
        result = result * 59 + (($indexGid == null) ? 43 : $indexGid.hashCode());
        Object $homeShow = getHomeShow();
        result = result * 59 + (($homeShow == null) ? 43 : $homeShow.hashCode());
        Object $listShow = getListShow();
        result = result * 59 + (($listShow == null) ? 43 : $listShow.hashCode());
        Object $transState = getTransState();
        result = result * 59 + (($transState == null) ? 43 : $transState.hashCode());
        Object $depositAmt = getDepositAmt();
        result = result * 59 + (($depositAmt == null) ? 43 : $depositAmt.hashCode());
        Object $transFee = getTransFee();
        result = result * 59 + (($transFee == null) ? 43 : $transFee.hashCode());
        Object $eachPoint = getEachPoint();
        result = result * 59 + (($eachPoint == null) ? 43 : $eachPoint.hashCode());
        Object $minNum = getMinNum();
        result = result * 59 + (($minNum == null) ? 43 : $minNum.hashCode());
        Object $maxNum = getMaxNum();
        result = result * 59 + (($maxNum == null) ? 43 : $maxNum.hashCode());
        Object $addTime = getAddTime();
        result = result * 59 + (($addTime == null) ? 43 : $addTime.hashCode());
        Object $tDesc = getTDesc();
        result = result * 59 + (($tDesc == null) ? 43 : $tDesc.hashCode());
        Object $currentPoint = getCurrentPoint();
        result = result * 59 + (($currentPoint == null) ? 43 : $currentPoint.hashCode());
        Object $floatPoint = getFloatPoint();
        result = result * 59 + (($floatPoint == null) ? 43 : $floatPoint.hashCode());
        Object $floatRate = getFloatRate();
        return result * 59 + (($floatRate == null) ? 43 : $floatRate.hashCode());
    }
 
    public String toString() {
        return "StockIndexVO(id=" + getId() + ", indexName=" + getIndexName() + ", indexCode=" + getIndexCode() + ", indexGid=" + getIndexGid() + ", homeShow=" + getHomeShow() + ", listShow=" + getListShow() + ", transState=" + getTransState() + ", depositAmt=" + getDepositAmt() + ", transFee=" + getTransFee() + ", eachPoint=" + getEachPoint() + ", minNum=" + getMinNum() + ", maxNum=" + getMaxNum() + ", addTime=" + getAddTime() + ", tDesc=" + getTDesc() + ", currentPoint=" + getCurrentPoint() + ", floatPoint=" + getFloatPoint() + ", floatRate=" + getFloatRate() + ")";
    }
 
 
    public Integer getId() {
        return this.id;
    }
 
    public String getIndexName() {
        return this.indexName;
    }
 
    public String getIndexCode() {
        return this.indexCode;
    }
 
    public String getIndexGid() {
        return this.indexGid;
    }
 
    public Integer getHomeShow() {
        return this.homeShow;
    }
 
    public Integer getListShow() {
        return this.listShow;
    }
 
    public Integer getTransState() {
        return this.transState;
    }
 
    public Integer getDepositAmt() {
        return this.depositAmt;
    }
 
    public Integer getTransFee() {
        return this.transFee;
    }
 
    public Integer getEachPoint() {
        return this.eachPoint;
    }
 
    public Integer getMinNum() {
        return this.minNum;
    }
 
    public Integer getMaxNum() {
        return this.maxNum;
    }
 
    public Date getAddTime() {
        return this.addTime;
    }
 
    public String getTDesc() {
        return this.tDesc;
    }
 
 
    public String getCurrentPoint() {
        return this.currentPoint;
    }
 
    public String getFloatPoint() {
        return this.floatPoint;
    }
 
    public String getFloatRate() {
        return this.floatRate;
    }
 
    public String getIsOption() {
        return isOption;
    }
 
    public void setIsOption(String isOption) {
        this.isOption = isOption;
    }
}