zj
2024-06-03 3cab39d85e5e43b8cc95ab82c9a914386b71c999
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
package org.example.pojo;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.sql.Date;
import java.sql.Timestamp;
 
/**
 * @program: webSocketProject
 * @description: 股票市场
 * @create: 2024-03-26 20:48
 **/
 
@JsonSerialize
@TableName("stock_market_new")
public class StockMarketNew implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    /**
     * 产品id 就是pid
     */
    @JsonProperty("Id")
    private String Id;
 
    /**
     * 平均成交量
     */
    @JsonProperty("AvgVolume")
    private String AvgVolume;
 
    /**
     * 涨幅
     */
    @JsonProperty("Chg")
    private String Chg;
 
    /**
     * 涨幅率
     */
    @JsonProperty("ChgPct")
    private String ChgPct;
 
    /**
     * 贝塔
     */
    @JsonProperty("FundamentalBeta")
    private String FundamentalBeta;
 
    /**
     * 股息
     */
    @JsonProperty("FundamentalDividend")
    private String FundamentalDividend;
 
    /**
     * 每股收益
     */
    @JsonProperty("FundamentalEps")
    private String FundamentalEps;
 
    /**
     * 市值
     */
    @JsonProperty("FundamentalMarketCap")
    private String FundamentalMarketCap;
 
    /**
     * 市盈率
     */
    @JsonProperty("FundamentalRatio")
 
    private String FundamentalRatio;
 
    /**
     * 营收
     */
    @JsonProperty("FundamentalRevenue")
 
    private String FundamentalRevenue;
 
    /**
     * 流通股份
     */
    @JsonProperty("FundamentalSharesOutstanding")
 
    private String FundamentalSharesOutstanding;
 
    /**
     * 最高
     */
    @JsonProperty("High")
 
    private String High;
 
    /**
     * 开市状态
     */
    @JsonProperty("IsOpen")
 
    private String IsOpen;
 
    /**
     * 最新价格
     */
    @JsonProperty("Last")
 
    private String Last;
 
    /**
     * last_pair_decimal
     */
    @JsonProperty("LastPairDecimal")
 
    private String LastPairDecimal;
 
    /**
     * 最低价格
     */
    @JsonProperty("Low")
 
    private String Low;
 
    /**
     * 股票名称
     */
    @JsonProperty("Name")
 
    private String Name;
 
    /**
     * 今开
     */
    @JsonProperty("Open")
 
    private String Open;
 
    /**
     * 昨收
     */
    @JsonProperty("PrevClose")
 
    private String PrevClose;
 
    /**
     * 编码
     */
    @JsonProperty("Symbol")
 
    private String Symbol;
 
    /**
     * 时间
     */
    @JsonProperty("Time")
 
    private String Time;
 
    /**
     * 交易量
     */
    @JsonProperty("Volume")
 
    private String Volume;
 
    /**
     * 印度股票才有的 区分 nse bse
     */
    @JsonProperty("Type")
    private String Type;
 
    public StockMarketNew() {}
 
    public String getId() {
        return Id;
    }
 
    public void setId(String id) {
        Id = id;
    }
 
    @JSONField(name="AvgVolume")
    public String getAvgVolume() {
        return AvgVolume;
    }
 
    public void setAvgVolume(String avgVolume) {
        AvgVolume = avgVolume;
    }
 
    public String getChg() {
        return Chg;
    }
 
    public void setChg(String chg) {
        Chg = chg;
    }
 
    public String getChgPct() {
        return ChgPct;
    }
 
    public void setChgPct(String chgPct) {
        ChgPct = chgPct;
    }
 
    public String getFundamentalBeta() {
        return FundamentalBeta;
    }
 
    public void setFundamentalBeta(String fundamentalBeta) {
        FundamentalBeta = fundamentalBeta;
    }
 
    public String getFundamentalDividend() {
        return FundamentalDividend;
    }
 
    public void setFundamentalDividend(String fundamentalDividend) {
        FundamentalDividend = fundamentalDividend;
    }
 
    public String getFundamentalEps() {
        return FundamentalEps;
    }
 
    public void setFundamentalEps(String fundamentalEps) {
        FundamentalEps = fundamentalEps;
    }
 
    public String getFundamentalMarketCap() {
        return FundamentalMarketCap;
    }
 
    public void setFundamentalMarketCap(String fundamentalMarketCap) {
        FundamentalMarketCap = fundamentalMarketCap;
    }
 
    public String getFundamentalRatio() {
        return FundamentalRatio;
    }
 
    public void setFundamentalRatio(String fundamentalRatio) {
        FundamentalRatio = fundamentalRatio;
    }
 
    public String getFundamentalRevenue() {
        return FundamentalRevenue;
    }
 
    public void setFundamentalRevenue(String fundamentalRevenue) {
        FundamentalRevenue = fundamentalRevenue;
    }
 
    public String getFundamentalSharesOutstanding() {
        return FundamentalSharesOutstanding;
    }
 
    public void setFundamentalSharesOutstanding(String fundamentalSharesOutstanding) {
        FundamentalSharesOutstanding = fundamentalSharesOutstanding;
    }
 
    public String getHigh() {
        return High;
    }
 
    public void setHigh(String high) {
        High = high;
    }
 
    public String getIsOpen() {
        return IsOpen;
    }
 
    public void setIsOpen(String isOpen) {
        IsOpen = isOpen;
    }
 
    public String getLast() {
        return Last;
    }
 
    public void setLast(String last) {
        Last = last;
    }
 
    public String getLastPairDecimal() {
        return LastPairDecimal;
    }
 
    public void setLastPairDecimal(String lastPairDecimal) {
        LastPairDecimal = lastPairDecimal;
    }
 
    public String getLow() {
        return Low;
    }
 
    public void setLow(String low) {
        Low = low;
    }
 
    public String getName() {
        return Name;
    }
 
    public void setName(String name) {
        Name = name;
    }
 
    public String getOpen() {
        return Open;
    }
 
    public void setOpen(String open) {
        Open = open;
    }
 
    public String getPrevClose() {
        return PrevClose;
    }
 
    public void setPrevClose(String prevClose) {
        PrevClose = prevClose;
    }
 
    public String getSymbol() {
        return Symbol;
    }
 
    public void setSymbol(String symbol) {
        Symbol = symbol;
    }
 
    public String getTime() {
        return Time;
    }
 
    public void setTime(String time) {
        Time = time;
    }
 
    public String getVolume() {
        return Volume;
    }
 
    public void setVolume(String volume) {
        Volume = volume;
    }
 
    public String getType() {
        return Type;
    }
 
    public void setType(String type) {
        Type = type;
    }
 
 
    public StockMarketNew(String id, String avgVolume, String chg, String chgPct, String fundamentalBeta, String fundamentalDividend, String fundamentalEps, String fundamentalMarketCap, String fundamentalRatio, String fundamentalRevenue, String fundamentalSharesOutstanding, String high, String isOpen, String last, String lastPairDecimal, String low, String name, String open, String prevClose, String symbol, String time, String volume, String type) {
        Id = id;
        AvgVolume = avgVolume;
        Chg = chg;
        ChgPct = chgPct;
        FundamentalBeta = fundamentalBeta;
        FundamentalDividend = fundamentalDividend;
        FundamentalEps = fundamentalEps;
        FundamentalMarketCap = fundamentalMarketCap;
        FundamentalRatio = fundamentalRatio;
        FundamentalRevenue = fundamentalRevenue;
        FundamentalSharesOutstanding = fundamentalSharesOutstanding;
        High = high;
        IsOpen = isOpen;
        Last = last;
        LastPairDecimal = lastPairDecimal;
        Low = low;
        Name = name;
        Open = open;
        PrevClose = prevClose;
        Symbol = symbol;
        Time = time;
        Volume = volume;
        Type = type;
    }
}