OtcStockRealInfo.java
1.3 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
package com.cjs.cms.model.quota;
import com.cjs.cms.model.BaseInfo;
/**
* 用户当前有效持仓
* @author tongxiaochuan
*
*/
public class OtcStockRealInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String otcCode;
private String otcName;
private String fundAccount;
private Integer enableAmount;
private Integer totalAmount; //用户当前所有持仓(包括委托未卖出的)
public String getOtcName() {
return otcName;
}
public void setOtcName(String otcName) {
this.otcName = otcName;
}
public String getOtcCode() {
return otcCode;
}
public void setOtcCode(String otcCode) {
this.otcCode = otcCode;
}
public String getFundAccount() {
return fundAccount;
}
public void setFundAccount(String fundAccount) {
this.fundAccount = fundAccount;
}
public Integer getEnableAmount() {
return enableAmount;
}
public void setEnableAmount(Integer enableAmount) {
this.enableAmount = enableAmount;
}
public Integer getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(Integer totalAmount) {
this.totalAmount = totalAmount;
}
}