1
zj
2026-01-14 716f77637e6e324fd5865e82039c2c2ee3f94bfa
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
 
package com.nq.vo.stockfutures;
 
 
public class FuturesVO {
 
    private String nowPrice;
 
    private String lastClose;
 
    private String buyPrice;
 
    private String sellPrice;
 
    private String maxPrice;
 
    private String minPrice;
 
 
    public void setNowPrice(String nowPrice) {
        this.nowPrice = nowPrice;
    }
 
    private String hourTime;
    private String todayOpen;
    private String extra1;
    private String extra2;
    private String extra3;
    private String dayTime;
    private String name;
 
    public void setLastClose(String lastClose) {
        this.lastClose = lastClose;
    }
 
    public void setBuyPrice(String buyPrice) {
        this.buyPrice = buyPrice;
    }
 
    public void setSellPrice(String sellPrice) {
        this.sellPrice = sellPrice;
    }
 
    public void setMaxPrice(String maxPrice) {
        this.maxPrice = maxPrice;
    }
 
    public void setMinPrice(String minPrice) {
        this.minPrice = minPrice;
    }
 
    public void setHourTime(String hourTime) {
        this.hourTime = hourTime;
    }
 
    public void setTodayOpen(String todayOpen) {
        this.todayOpen = todayOpen;
    }
 
    public void setExtra1(String extra1) {
        this.extra1 = extra1;
    }
 
    public void setExtra2(String extra2) {
        this.extra2 = extra2;
    }
 
    public void setExtra3(String extra3) {
        this.extra3 = extra3;
    }
 
    public void setDayTime(String dayTime) {
        this.dayTime = dayTime;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof FuturesVO)) return false;
        FuturesVO other = (FuturesVO) o;
        if (!other.canEqual(this)) 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$lastClose = getLastClose(), other$lastClose = other.getLastClose();
        if ((this$lastClose == null) ? (other$lastClose != null) : !this$lastClose.equals(other$lastClose))
            return false;
        Object this$buyPrice = getBuyPrice(), other$buyPrice = other.getBuyPrice();
        if ((this$buyPrice == null) ? (other$buyPrice != null) : !this$buyPrice.equals(other$buyPrice)) return false;
        Object this$sellPrice = getSellPrice(), other$sellPrice = other.getSellPrice();
        if ((this$sellPrice == null) ? (other$sellPrice != null) : !this$sellPrice.equals(other$sellPrice))
            return false;
        Object this$maxPrice = getMaxPrice(), other$maxPrice = other.getMaxPrice();
        if ((this$maxPrice == null) ? (other$maxPrice != null) : !this$maxPrice.equals(other$maxPrice)) return false;
        Object this$minPrice = getMinPrice(), other$minPrice = other.getMinPrice();
        if ((this$minPrice == null) ? (other$minPrice != null) : !this$minPrice.equals(other$minPrice)) return false;
        Object this$hourTime = getHourTime(), other$hourTime = other.getHourTime();
        if ((this$hourTime == null) ? (other$hourTime != null) : !this$hourTime.equals(other$hourTime)) return false;
        Object this$todayOpen = getTodayOpen(), other$todayOpen = other.getTodayOpen();
        if ((this$todayOpen == null) ? (other$todayOpen != null) : !this$todayOpen.equals(other$todayOpen))
            return false;
        Object this$extra1 = getExtra1(), other$extra1 = other.getExtra1();
        if ((this$extra1 == null) ? (other$extra1 != null) : !this$extra1.equals(other$extra1)) return false;
        Object this$extra2 = getExtra2(), other$extra2 = other.getExtra2();
        if ((this$extra2 == null) ? (other$extra2 != null) : !this$extra2.equals(other$extra2)) return false;
        Object this$extra3 = getExtra3(), other$extra3 = other.getExtra3();
        if ((this$extra3 == null) ? (other$extra3 != null) : !this$extra3.equals(other$extra3)) return false;
        Object this$dayTime = getDayTime(), other$dayTime = other.getDayTime();
        if ((this$dayTime == null) ? (other$dayTime != null) : !this$dayTime.equals(other$dayTime)) return false;
        Object this$name = getName(), other$name = other.getName();
        return !((this$name == null) ? (other$name != null) : !this$name.equals(other$name));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof FuturesVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $nowPrice = getNowPrice();
        result = result * 59 + (($nowPrice == null) ? 43 : $nowPrice.hashCode());
        Object $lastClose = getLastClose();
        result = result * 59 + (($lastClose == null) ? 43 : $lastClose.hashCode());
        Object $buyPrice = getBuyPrice();
        result = result * 59 + (($buyPrice == null) ? 43 : $buyPrice.hashCode());
        Object $sellPrice = getSellPrice();
        result = result * 59 + (($sellPrice == null) ? 43 : $sellPrice.hashCode());
        Object $maxPrice = getMaxPrice();
        result = result * 59 + (($maxPrice == null) ? 43 : $maxPrice.hashCode());
        Object $minPrice = getMinPrice();
        result = result * 59 + (($minPrice == null) ? 43 : $minPrice.hashCode());
        Object $hourTime = getHourTime();
        result = result * 59 + (($hourTime == null) ? 43 : $hourTime.hashCode());
        Object $todayOpen = getTodayOpen();
        result = result * 59 + (($todayOpen == null) ? 43 : $todayOpen.hashCode());
        Object $extra1 = getExtra1();
        result = result * 59 + (($extra1 == null) ? 43 : $extra1.hashCode());
        Object $extra2 = getExtra2();
        result = result * 59 + (($extra2 == null) ? 43 : $extra2.hashCode());
        Object $extra3 = getExtra3();
        result = result * 59 + (($extra3 == null) ? 43 : $extra3.hashCode());
        Object $dayTime = getDayTime();
        result = result * 59 + (($dayTime == null) ? 43 : $dayTime.hashCode());
        Object $name = getName();
        return result * 59 + (($name == null) ? 43 : $name.hashCode());
    }
 
    public String toString() {
        return "FuturesVO(nowPrice=" + getNowPrice() + ", lastClose=" + getLastClose() + ", buyPrice=" + getBuyPrice() + ", sellPrice=" + getSellPrice() + ", maxPrice=" + getMaxPrice() + ", minPrice=" + getMinPrice() + ", hourTime=" + getHourTime() + ", todayOpen=" + getTodayOpen() + ", extra1=" + getExtra1() + ", extra2=" + getExtra2() + ", extra3=" + getExtra3() + ", dayTime=" + getDayTime() + ", name=" + getName() + ")";
    }
 
 
    public String getNowPrice() {
        return this.nowPrice;
    }
 
 
    public String getLastClose() {
        return this.lastClose;
    }
 
 
    public String getBuyPrice() {
        return this.buyPrice;
    }
 
 
    public String getSellPrice() {
        return this.sellPrice;
    }
 
 
    public String getMaxPrice() {
        return this.maxPrice;
    }
 
 
    public String getMinPrice() {
        return this.minPrice;
    }
 
 
    public String getHourTime() {
        return this.hourTime;
    }
 
 
    public String getTodayOpen() {
        return this.todayOpen;
    }
 
 
    public String getExtra1() {
        return this.extra1;
    }
 
    public String getExtra2() {
        return this.extra2;
    }
 
    public String getExtra3() {
        return this.extra3;
    }
 
 
    public String getDayTime() {
        return this.dayTime;
    }
 
 
    public String getName() {
        return this.name;
    }
 
}