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
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
272
273
274
275
276
277
 
package com.nq.pojo;
 
import java.beans.ConstructorProperties;
import java.math.BigDecimal;
import java.util.Date;
 
public class StockMarketsDay {
 
    private Integer id;
 
    private Integer stockId;
 
    private String stockName;
 
    private String stockCode;
 
    private String stockGid;
 
    private String ymd;
 
    private String hms;
 
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private BigDecimal nowPrice;
    private BigDecimal creaseRate;
    private String openPx;
    private String closePx;
    private String businessBalance;
    private String businessAmount;
    private Date addTime;
    private String addTimeStr;
 
    public void setStockId(Integer stockId) {
        this.stockId = stockId;
    }
 
    public void setStockName(String stockName) {
        this.stockName = stockName;
    }
 
    public void setStockCode(String stockCode) {
        this.stockCode = stockCode;
    }
 
    public void setStockGid(String stockGid) {
        this.stockGid = stockGid;
    }
 
    public void setYmd(String ymd) {
        this.ymd = ymd;
    }
 
    public void setHms(String hms) {
        this.hms = hms;
    }
 
    public void setNowPrice(BigDecimal nowPrice) {
        this.nowPrice = nowPrice;
    }
 
    public void setCreaseRate(BigDecimal creaseRate) {
        this.creaseRate = creaseRate;
    }
 
    public void setOpenPx(String openPx) {
        this.openPx = openPx;
    }
 
    public void setClosePx(String closePx) {
        this.closePx = closePx;
    }
 
    public void setBusinessBalance(String businessBalance) {
        this.businessBalance = businessBalance;
    }
 
    public void setBusinessAmount(String businessAmount) {
        this.businessAmount = businessAmount;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public void setAddTimeStr(String addTimeStr) {
        this.addTimeStr = addTimeStr;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof StockMarketsDay)) return false;
        StockMarketsDay other = (StockMarketsDay) 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$stockId = getStockId(), other$stockId = other.getStockId();
        if ((this$stockId == null) ? (other$stockId != null) : !this$stockId.equals(other$stockId)) return false;
        Object this$stockName = getStockName(), other$stockName = other.getStockName();
        if ((this$stockName == null) ? (other$stockName != null) : !this$stockName.equals(other$stockName))
            return false;
        Object this$stockCode = getStockCode(), other$stockCode = other.getStockCode();
        if ((this$stockCode == null) ? (other$stockCode != null) : !this$stockCode.equals(other$stockCode))
            return false;
        Object this$stockGid = getStockGid(), other$stockGid = other.getStockGid();
        if ((this$stockGid == null) ? (other$stockGid != null) : !this$stockGid.equals(other$stockGid)) return false;
        Object this$ymd = getYmd(), other$ymd = other.getYmd();
        if ((this$ymd == null) ? (other$ymd != null) : !this$ymd.equals(other$ymd)) return false;
        Object this$hms = getHms(), other$hms = other.getHms();
        if ((this$hms == null) ? (other$hms != null) : !this$hms.equals(other$hms)) return false;
        Object this$nowPrice = getNowPrice(), other$nowPrice = other.getNowPrice();
        if ((this$nowPrice == null) ? (other$nowPrice != null) : !this$nowPrice.equals(other$nowPrice)) return false;
        Object this$creaseRate = getCreaseRate(), other$creaseRate = other.getCreaseRate();
        if ((this$creaseRate == null) ? (other$creaseRate != null) : !this$creaseRate.equals(other$creaseRate))
            return false;
        Object this$openPx = getOpenPx(), other$openPx = other.getOpenPx();
        if ((this$openPx == null) ? (other$openPx != null) : !this$openPx.equals(other$openPx)) return false;
        Object this$closePx = getClosePx(), other$closePx = other.getClosePx();
        if ((this$closePx == null) ? (other$closePx != null) : !this$closePx.equals(other$closePx)) return false;
        Object this$businessBalance = getBusinessBalance(), other$businessBalance = other.getBusinessBalance();
        if ((this$businessBalance == null) ? (other$businessBalance != null) : !this$businessBalance.equals(other$businessBalance))
            return false;
        Object this$businessAmount = getBusinessAmount(), other$businessAmount = other.getBusinessAmount();
        if ((this$businessAmount == null) ? (other$businessAmount != null) : !this$businessAmount.equals(other$businessAmount))
            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$addTimeStr = getAddTimeStr(), other$addTimeStr = other.getAddTimeStr();
        return !((this$addTimeStr == null) ? (other$addTimeStr != null) : !this$addTimeStr.equals(other$addTimeStr));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof StockMarketsDay;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $id = getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        Object $stockId = getStockId();
        result = result * 59 + (($stockId == null) ? 43 : $stockId.hashCode());
        Object $stockName = getStockName();
        result = result * 59 + (($stockName == null) ? 43 : $stockName.hashCode());
        Object $stockCode = getStockCode();
        result = result * 59 + (($stockCode == null) ? 43 : $stockCode.hashCode());
        Object $stockGid = getStockGid();
        result = result * 59 + (($stockGid == null) ? 43 : $stockGid.hashCode());
        Object $ymd = getYmd();
        result = result * 59 + (($ymd == null) ? 43 : $ymd.hashCode());
        Object $hms = getHms();
        result = result * 59 + (($hms == null) ? 43 : $hms.hashCode());
        Object $nowPrice = getNowPrice();
        result = result * 59 + (($nowPrice == null) ? 43 : $nowPrice.hashCode());
        Object $creaseRate = getCreaseRate();
        result = result * 59 + (($creaseRate == null) ? 43 : $creaseRate.hashCode());
        Object $openPx = getOpenPx();
        result = result * 59 + (($openPx == null) ? 43 : $openPx.hashCode());
        Object $closePx = getClosePx();
        result = result * 59 + (($closePx == null) ? 43 : $closePx.hashCode());
        Object $businessBalance = getBusinessBalance();
        result = result * 59 + (($businessBalance == null) ? 43 : $businessBalance.hashCode());
        Object $businessAmount = getBusinessAmount();
        result = result * 59 + (($businessAmount == null) ? 43 : $businessAmount.hashCode());
        Object $addTime = getAddTime();
        result = result * 59 + (($addTime == null) ? 43 : $addTime.hashCode());
        Object $addTimeStr = getAddTimeStr();
        return result * 59 + (($addTimeStr == null) ? 43 : $addTimeStr.hashCode());
    }
 
    public String toString() {
        return "StockMarketsDay(id=" + getId() + ", stockId=" + getStockId() + ", stockName=" + getStockName() + ", stockCode=" + getStockCode() + ", stockGid=" + getStockGid() + ", ymd=" + getYmd() + ", hms=" + getHms() + ", nowPrice=" + getNowPrice() + ", creaseRate=" + getCreaseRate() + ", openPx=" + getOpenPx() + ", closePx=" + getClosePx() + ", businessBalance=" + getBusinessBalance() + ", businessAmount=" + getBusinessAmount() + ", addTime=" + getAddTime() + ", addTimeStr=" + getAddTimeStr() + ")";
    }
 
    public StockMarketsDay() {
    }
 
    @ConstructorProperties({"id", "stockId", "stockName", "stockCode", "stockGid", "ymd", "hms", "nowPrice", "creaseRate", "openPx", "closePx", "businessBalance", "businessAmount", "addTime", "addTimeStr"})
 
    public StockMarketsDay(Integer id, Integer stockId, String stockName, String stockCode, String stockGid, String ymd, String hms, BigDecimal nowPrice, BigDecimal creaseRate, String openPx, String closePx, String businessBalance, String businessAmount, Date addTime, String addTimeStr) {
        this.id = id;
        this.stockId = stockId;
        this.stockName = stockName;
        this.stockCode = stockCode;
        this.stockGid = stockGid;
        this.ymd = ymd;
        this.hms = hms;
        this.nowPrice = nowPrice;
        this.creaseRate = creaseRate;
        this.openPx = openPx;
        this.closePx = closePx;
        this.businessBalance = businessBalance;
        this.businessAmount = businessAmount;
        this.addTime = addTime;
        this.addTimeStr = addTimeStr;
    }
 
 
    public Integer getId() {
        return this.id;
    }
 
 
    public Integer getStockId() {
        return this.stockId;
    }
 
 
    public String getStockName() {
        return this.stockName;
    }
 
 
    public String getStockCode() {
        return this.stockCode;
    }
 
 
    public String getStockGid() {
        return this.stockGid;
    }
 
 
    public String getYmd() {
        return this.ymd;
    }
 
 
    public String getHms() {
        return this.hms;
    }
 
 
    public BigDecimal getNowPrice() {
        return this.nowPrice;
    }
 
 
    public BigDecimal getCreaseRate() {
        return this.creaseRate;
    }
 
 
    public String getOpenPx() {
        return this.openPx;
    }
 
 
    public String getClosePx() {
        return this.closePx;
    }
 
 
    public String getBusinessBalance() {
        return this.businessBalance;
    }
 
 
    public String getBusinessAmount() {
        return this.businessAmount;
    }
 
 
    public Date getAddTime() {
        return this.addTime;
    }
 
 
    public String getAddTimeStr() {
        return this.addTimeStr;
    }
 
}