TrustApplyExtInfo.java
4.54 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
160
161
162
163
164
165
166
167
168
package com.cjs.site.model.user.ration;
import com.cjs.site.model.BaseInfo;
/**
* 托管信息附加表(在交易系统oracle库的hs_asset用户下)
*
* @author tongyufu
*
*/
public class TrustApplyExtInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String fundAccount; //会员号
private String applyNo; //托管申请单号
private String otcCode;
private String otcName;
private Integer applyCount; //申请数量
private Integer approvalCount; //鉴定通过数量
private Integer backAmount; //退回数量
private Integer preInAmount; //入库数量
private String applyType; //申请状态(0:待审核 1:审核不通过 2:待鉴定 3:鉴定不通过 4:待入库 5:已入库待确权 6:已确权 7:申请取消 )
private Double issuePrice; //上市价
private String aggreeStatus; //配售状态(0:待同意;1:待交割;2:已入库)
private Integer aggreeDate; //同意配售日期to_number(to_char(sysdate,'yyyymmdd'))
private Integer aggreeTime; //同意配售时间to_number(to_char(sysdate,'hh24miss'))
private String returnStatus; //退货状态(0:待申请;1:已申请;2:已退货)
private Integer returnApplyDate; //退货申请日期to_number(to_char(sysdate,'yyyymmdd'))
private Integer returnApplyTime; //退货申请时间to_number(to_char(sysdate,'hh24miss'))
private String returnNo; //退货单号
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 getFundAccount() {
return fundAccount;
}
public void setFundAccount(String fundAccount) {
this.fundAccount = fundAccount;
}
public String getApplyNo() {
return applyNo;
}
public void setApplyNo(String applyNo) {
this.applyNo = applyNo;
}
public Integer getApplyCount() {
return applyCount;
}
public void setApplyCount(Integer applyCount) {
this.applyCount = applyCount;
}
public Integer getApprovalCount() {
return approvalCount;
}
public void setApprovalCount(Integer approvalCount) {
this.approvalCount = approvalCount;
}
public Integer getBackAmount() {
return backAmount;
}
public Double getIssuePrice() {
return issuePrice;
}
public void setIssuePrice(Double issuePrice) {
this.issuePrice = issuePrice;
}
public void setBackAmount(Integer backAmount) {
this.backAmount = backAmount;
}
public Integer getPreInAmount() {
return preInAmount;
}
public void setPreInAmount(Integer preInAmount) {
this.preInAmount = preInAmount;
}
public String getApplyType() {
return applyType;
}
public void setApplyType(String applyType) {
this.applyType = applyType;
}
public String getAggreeStatus() {
return aggreeStatus;
}
public void setAggreeStatus(String aggreeStatus) {
this.aggreeStatus = aggreeStatus;
}
public Integer getAggreeDate() {
return aggreeDate;
}
public void setAggreeDate(Integer aggreeDate) {
this.aggreeDate = aggreeDate;
}
public Integer getAggreeTime() {
return aggreeTime;
}
public void setAggreeTime(Integer aggreeTime) {
this.aggreeTime = aggreeTime;
}
public String getReturnStatus() {
return returnStatus;
}
public void setReturnStatus(String returnStatus) {
this.returnStatus = returnStatus;
}
public Integer getReturnApplyDate() {
return returnApplyDate;
}
public void setReturnApplyDate(Integer returnApplyDate) {
this.returnApplyDate = returnApplyDate;
}
public Integer getReturnApplyTime() {
return returnApplyTime;
}
public void setReturnApplyTime(Integer returnApplyTime) {
this.returnApplyTime = returnApplyTime;
}
public String getReturnNo() {
return returnNo;
}
public void setReturnNo(String returnNo) {
this.returnNo = returnNo;
}
}