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
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
package com.nq.pojo;
 
import lombok.Data;
 
import java.beans.ConstructorProperties;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class StockIndex {
    private Integer id;
    private String indexName;
    private String indexCode;
    private String indexGid;
    private Integer homeShow;
    private Integer listShow;
    private Integer transState;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private Integer depositAmt;
    private Integer transFee;
    private Integer eachPoint;
    private Integer minNum;
    private Integer maxNum;
    private Date addTime;
    private String tDesc;
    private String introduction;
    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 boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof StockIndex)) return false;
        StockIndex other = (StockIndex) 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();
        return !((this$tDesc == null) ? (other$tDesc != null) : !this$tDesc.equals(other$tDesc));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof StockIndex;
    }
 
    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();
        return result * 59 + (($tDesc == null) ? 43 : $tDesc.hashCode());
    }
 
    public String toString() {
        return "StockIndex(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() + ")";
    }
 
    public StockIndex() {
    }
 
    @ConstructorProperties({"id", "indexName", "indexCode", "indexGid", "homeShow", "listShow", "transState", "depositAmt", "transFee", "eachPoint", "minNum", "maxNum", "addTime", "tDesc"})
    public StockIndex(Integer id, String indexName, String indexCode, String indexGid, Integer homeShow, Integer listShow, Integer transState, Integer depositAmt, Integer transFee, Integer eachPoint, Integer minNum, Integer maxNum, Date addTime, String tDesc ) {
        this.id = id;
        this.indexName = indexName;
        this.indexCode = indexCode;
        this.indexGid = indexGid;
        this.homeShow = homeShow;
        this.listShow = listShow;
        this.transState = transState;
        this.depositAmt = depositAmt;
        this.transFee = transFee;
        this.eachPoint = eachPoint;
        this.minNum = minNum;
        this.maxNum = maxNum;
        this.addTime = addTime;
        this.tDesc = tDesc;
 
    }
 
 
    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;
    }
}