OtcTrusteeCodeInfo.java
3.78 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package com.cjs.site.model.user.ration;
import com.cjs.site.model.BaseInfo;
/**
* 托管参数设置(HS_ASSET.OTCTRUSTEECODE)
*
* @author tongyufu
*
*/
public class OtcTrusteeCodeInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String otcCode;
private String otcName;
private String trusteeUnit; //计件单位
private String trusteeUnitText; //计件单位文本
private Integer lowAmount; //最小托管数量
private Double issuePrice; //上市价
private Double appraisalFare; //鉴定费
private Double trusteeFare; //上挂费
private String beginDate; //开始日期
private String endDate; //结束日期
private Integer applicableAmount; //可托管总量
private Integer totalAmount; //入库总量
private Integer retrust; //再托管(0:否;1:是)
private Integer remainAmount; //
private Double price;
private String remark;
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 String getTrusteeUnit() {
return trusteeUnit;
}
public void setTrusteeUnit(String trusteeUnit) {
this.trusteeUnit = trusteeUnit;
}
public String getTrusteeUnitText() {
return trusteeUnitText;
}
public void setTrusteeUnitText(String trusteeUnitText) {
this.trusteeUnitText = trusteeUnitText;
}
public Integer getLowAmount() {
return lowAmount;
}
public void setLowAmount(Integer lowAmount) {
this.lowAmount = lowAmount;
}
public Double getIssuePrice() {
return issuePrice;
}
public void setIssuePrice(Double issuePrice) {
this.issuePrice = issuePrice;
}
public Double getAppraisalFare() {
return appraisalFare;
}
public void setAppraisalFare(Double appraisalFare) {
this.appraisalFare = appraisalFare;
}
public Double getTrusteeFare() {
return trusteeFare;
}
public void setTrusteeFare(Double trusteeFare) {
this.trusteeFare = trusteeFare;
}
public String getBeginDate() {
return beginDate;
}
public void setBeginDate(String beginDate) {
this.beginDate = beginDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public Integer getApplicableAmount() {
return applicableAmount;
}
public void setApplicableAmount(Integer applicableAmount) {
this.applicableAmount = applicableAmount;
}
public Integer getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(Integer totalAmount) {
this.totalAmount = totalAmount;
}
public Integer getRetrust() {
return retrust;
}
public void setRetrust(Integer retrust) {
this.retrust = retrust;
}
public Integer getRemainAmount() {
return remainAmount;
}
public void setRemainAmount(Integer remainAmount) {
this.remainAmount = remainAmount;
}
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}