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
| package com.nq.utils.stock.lide;
|
| import java.io.Serializable;
|
| /**
| * 立德全量数据
| */
| public class LideRankDataVo implements Serializable {
|
| private static final long serialVersionUID=2l;
|
| //品种代码,名称,开盘价,最高价,最低价,昨收,现价,成交量,成交额,涨跌幅,涨跌额,卖一价,卖二价,卖三价,卖四价,卖五价,买一价,买二价,买三价,买四价,买五价
| //代码
| private String c;
| //名词
| private String n;
| //最新价
| private float p;
| //流通市值
| private Long fund;
| //总市值
| private Long tshare;
|
| //换手率
| private float hs;
| //成家额
| private Long amount;
|
|
| //涨跌幅度
| private float zdp;
|
| public LideRankDataVo(String c, String n, float p, long fund, long zsz, float hs, long amount, float zdp) {
| this.c = c;
| this.n = n;
| this.p = p*1000;
| this.fund = fund;
| this.tshare = zsz;
| this.hs = hs;
| this.amount = amount;
| this.zdp = zdp;
| }
|
| @Override
| public String toString() {
| return "LideDataVo{" +
| "c='" + c + '\'' +
| ", n='" + n + '\'' +
| ", p=" + p +
| ", fund=" + fund +
| ", zsz=" + tshare +
| ", hs=" + hs +
| ", amount='" + amount + '\'' +
| ", zdp=" + zdp +
| '}';
| }
|
| public static long getSerialVersionUID() {
| return serialVersionUID;
| }
|
| public String getC() {
| return c;
| }
|
| public void setC(String c) {
| this.c = c;
| }
|
| public String getN() {
| return n;
| }
|
| public void setN(String n) {
| this.n = n;
| }
|
| public float getP() {
| return p;
| }
|
| public void setP(float p) {
| this.p = p;
| }
|
| public float getFund() {
| return fund;
| }
|
| public void setFund(long fund) {
| this.fund = fund;
| }
|
| public Long getTshare() {
| return tshare;
| }
|
| public void setTshare(Long tshare) {
| this.tshare = tshare;
| }
|
| public float getHs() {
| return hs;
| }
|
| public void setHs(float hs) {
| this.hs = hs;
| }
|
| public long getAmount() {
| return amount;
| }
|
| public void setAmount(long amount) {
| this.amount = amount;
| }
|
| public float getZdp() {
| return zdp;
| }
|
| public void setZdp(float zdp) {
| this.zdp = zdp;
| }
| }
|
|