zj
2024-06-03 287ac389edd047696d956afafdb855a93830bc0c
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
package com.nq.vo.foreigncurrency;
 
public class ExchangeVO {
    private String hourTime;
    private String extra1;
    private String extra2;
    private String lastClose;
    private String bofu;
 
    public void setHourTime(String hourTime) {
        this.hourTime = hourTime;
    }
 
    private String todayOpen;
    private String maxPrice;
    private String minPrice;
    private String nowPrice;
    private String name;
 
    public void setExtra1(String extra1) {
        this.extra1 = extra1;
    }
 
    public void setExtra2(String extra2) {
        this.extra2 = extra2;
    }
 
    public void setLastClose(String lastClose) {
        this.lastClose = lastClose;
    }
 
    public void setBofu(String bofu) {
        this.bofu = bofu;
    }
 
    public void setTodayOpen(String todayOpen) {
        this.todayOpen = todayOpen;
    }
 
    public void setMaxPrice(String maxPrice) {
        this.maxPrice = maxPrice;
    }
 
    public void setMinPrice(String minPrice) {
        this.minPrice = minPrice;
    }
 
    public void setNowPrice(String nowPrice) {
        this.nowPrice = nowPrice;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof ExchangeVO)) return false;
        ExchangeVO other = (ExchangeVO) o;
        if (!other.canEqual(this)) 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$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$lastClose = getLastClose(), other$lastClose = other.getLastClose();
        if ((this$lastClose == null) ? (other$lastClose != null) : !this$lastClose.equals(other$lastClose))
            return false;
        Object this$bofu = getBofu(), other$bofu = other.getBofu();
        if ((this$bofu == null) ? (other$bofu != null) : !this$bofu.equals(other$bofu)) 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$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$nowPrice = getNowPrice(), other$nowPrice = other.getNowPrice();
        if ((this$nowPrice == null) ? (other$nowPrice != null) : !this$nowPrice.equals(other$nowPrice)) 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 ExchangeVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $hourTime = getHourTime();
        result = result * 59 + (($hourTime == null) ? 43 : $hourTime.hashCode());
        Object $extra1 = getExtra1();
        result = result * 59 + (($extra1 == null) ? 43 : $extra1.hashCode());
        Object $extra2 = getExtra2();
        result = result * 59 + (($extra2 == null) ? 43 : $extra2.hashCode());
        Object $lastClose = getLastClose();
        result = result * 59 + (($lastClose == null) ? 43 : $lastClose.hashCode());
        Object $bofu = getBofu();
        result = result * 59 + (($bofu == null) ? 43 : $bofu.hashCode());
        Object $todayOpen = getTodayOpen();
        result = result * 59 + (($todayOpen == null) ? 43 : $todayOpen.hashCode());
        Object $maxPrice = getMaxPrice();
        result = result * 59 + (($maxPrice == null) ? 43 : $maxPrice.hashCode());
        Object $minPrice = getMinPrice();
        result = result * 59 + (($minPrice == null) ? 43 : $minPrice.hashCode());
        Object $nowPrice = getNowPrice();
        result = result * 59 + (($nowPrice == null) ? 43 : $nowPrice.hashCode());
        Object $name = getName();
        return result * 59 + (($name == null) ? 43 : $name.hashCode());
    }
 
    public String toString() {
        return "ExchangeVO(hourTime=" + getHourTime() + ", extra1=" + getExtra1() + ", extra2=" + getExtra2() + ", lastClose=" + getLastClose() + ", bofu=" + getBofu() + ", todayOpen=" + getTodayOpen() + ", maxPrice=" + getMaxPrice() + ", minPrice=" + getMinPrice() + ", nowPrice=" + getNowPrice() + ", name=" + getName() + ")";
    }
 
 
    public String getHourTime() {
        return this.hourTime;
    }
 
    public String getExtra1() {
        return this.extra1;
    }
 
    public String getExtra2() {
        return this.extra2;
    }
 
    public String getLastClose() {
        return this.lastClose;
    }
 
    public String getBofu() {
        return this.bofu;
    }
 
    public String getTodayOpen() {
        return this.todayOpen;
    }
 
    public String getMaxPrice() {
        return this.maxPrice;
    }
 
    public String getMinPrice() {
        return this.minPrice;
    }
 
    public String getNowPrice() {
        return this.nowPrice;
    }
 
    public String getName() {
        return this.name;
    }
}