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
 
package com.nq.vo.stock;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class StockUsVO {
    private int id;
    private String name;
    private String code;
    private String spell;
    private String gid;
    private String nowPrice;
    private BigDecimal hcrate;
    private String today_max;
    private String today_min;
 
    private String business_balance;
 
    private String business_amount;
 
    private String preclose_px;
 
    private String open_px;
    private String type;
 
    private String timeDate;
    public void setId(int id) {
        this.id = id;
    }
 
 
 
 
    private Integer depositAmt;
 
    public void setName(String name) {
        this.name = name;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public void setSpell(String spell) {
        this.spell = spell;
    }
 
    public void setGid(String gid) {
        this.gid = gid;
    }
 
    public void setNowPrice(String nowPrice) {
        this.nowPrice = nowPrice;
    }
 
    public void setHcrate(BigDecimal hcrate) {
        this.hcrate = hcrate;
    }
 
    public void setToday_max(String today_max) {
        this.today_max = today_max;
    }
 
    public void setToday_min(String today_min) {
        this.today_min = today_min;
    }
 
    public void setBusiness_balance(String business_balance) {
        this.business_balance = business_balance;
    }
 
    public void setBusiness_amount(String business_amount) {
        this.business_amount = business_amount;
    }
 
    public void setPreclose_px(String preclose_px) {
        this.preclose_px = preclose_px;
    }
 
    public void setOpen_px(String open_px) {
        this.open_px = open_px;
    }
 
 
 
    protected boolean canEqual(Object other) {
        return other instanceof StockUsVO;
    }
 
 
 
 
    public int getId() {
        return this.id;
    }
 
 
    public String getName() {
        return this.name;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getSpell() {
        return this.spell;
    }
 
    public String getGid() {
        return this.gid;
    }
 
 
    public String getNowPrice() {
        return this.nowPrice;
    }
 
 
    public BigDecimal getHcrate() {
        return this.hcrate;
    }
 
 
    public String getToday_max() {
        return this.today_max;
    }
 
 
    public String getToday_min() {
        return this.today_min;
    }
 
 
    public String getBusiness_balance() {
        return this.business_balance;
    }
 
 
    public String getBusiness_amount() {
        return this.business_amount;
    }
 
 
    public String getPreclose_px() {
        return this.preclose_px;
    }
 
 
    public String getOpen_px() {
        return this.open_px;
    }
 
 
 
 
 
 
 
    public Integer getDepositAmt() {
        return depositAmt;
    }
 
    public void setDepositAmt(Integer depositAmt) {
        this.depositAmt = depositAmt;
    }
}