EcEntrustInfo.java
2.99 KB
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
package com.cjs.cms.model.entrust;
import com.cjs.cms.model.BaseInfo;
/**
* 商品行情信息
*
* @author tongyufu
*
*/
public class EcEntrustInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String otcCode;
private String otcName;
private Double lastPrice; //最新价
private Double closePrice; //昨日收盘价
private Double openPrice; //开盘价
private Double buyPrice; //最高买价
private Integer buyAmount; //最高买价的委买数量
private Double sellPrice; //最低卖价
private Integer sellAmount; //最低卖价的委卖数量
private Double ROSE; //涨幅
private Double UPS; //涨跌
private Integer businessAmount; //成交量
private Double businessBalance; //成交额
public String getOtcCode() {
return otcCode;
}
public void setOtcCode(String otcCode) {
this.otcCode = otcCode;
}
public String getOtcName() {
return otcName;
}
public void setOtcName(String otcName) {
this.otcName = otcName;
}
public Double getLastPrice() {
return lastPrice;
}
public void setLastPrice(Double lastPrice) {
this.lastPrice = lastPrice;
}
public Double getClosePrice() {
return closePrice;
}
public void setClosePrice(Double closePrice) {
this.closePrice = closePrice;
}
public Double getOpenPrice() {
return openPrice;
}
public void setOpenPrice(Double openPrice) {
this.openPrice = openPrice;
}
public Double getBuyPrice() {
return buyPrice;
}
public void setBuyPrice(Double buyPrice) {
this.buyPrice = buyPrice;
}
public Integer getBuyAmount() {
return buyAmount;
}
public void setBuyAmount(Integer buyAmount) {
this.buyAmount = buyAmount;
}
public Double getSellPrice() {
return sellPrice;
}
public void setSellPrice(Double sellPrice) {
this.sellPrice = sellPrice;
}
public Integer getSellAmount() {
return sellAmount;
}
public void setSellAmount(Integer sellAmount) {
this.sellAmount = sellAmount;
}
public Double getROSE() {
return ROSE;
}
public void setROSE(Double rOSE) {
ROSE = rOSE;
}
public Double getUPS() {
return UPS;
}
public void setUPS(Double uPS) {
UPS = uPS;
}
public Integer getBusinessAmount() {
return businessAmount;
}
public void setBusinessAmount(Integer businessAmount) {
this.businessAmount = businessAmount;
}
public Double getBusinessBalance() {
return businessBalance;
}
public void setBusinessBalance(Double businessBalance) {
this.businessBalance = businessBalance;
}
}