EcEntrustInfo.java
1.73 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
package com.cjs.site.model.entrust;
import com.cjs.site.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 buyPrice; //最高买价
private Integer buyAmount; //最高买价的委买数量
private Double sellPrice; //最低卖价
private Integer sellAmount; //最低卖价的委卖数量
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 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;
}
}