RationOldConfigInfo.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
169
170
171
172
173
174
175
176
177
178
package com.cjs.site.model.user.ration;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.cjs.site.model.BaseInfo;
/**
* 在托管配置设置
* @author xiangwei
*
*/
public class RationOldConfigInfo extends BaseInfo {
/**
*
*/
private static final long serialVersionUID = 1L;
private Integer id; //
private String otcCode; //藏品代码
private String otcName; //藏品名称
private Double price; //单个藏品价格
private Integer rationAmount; //开放配售总量
private Integer remainAmount; //剩余申请数量
private Integer maxApplyAmount; //单个用户累计最大申请量
private String noticeUrl; //公告链接
private String innerAccount; //内部账号,用来存放因去除小数位而未分配的权益
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date confirmStartDate; //开始确认配售日期
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date confirmEndDate; //结束确认配售日期
private String rationStatus; //配售状态(0:作废;1:待配售;2:配售中;3:配售成功;4:配售失败;5:已分配资格)
private String rationResult; //配售结果说明
private Date createAt; //创建时间
private String createBy; //创建人
private Integer qualityAmount; //获得资格数量
private Integer agreeAmount; //同意配售数量
public Integer getQualityAmount() {
return qualityAmount;
}
public void setQualityAmount(Integer qualityAmount) {
this.qualityAmount = qualityAmount;
}
public Integer getAgreeAmount() {
return agreeAmount;
}
public void setAgreeAmount(Integer agreeAmount) {
this.agreeAmount = agreeAmount;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
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 getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
public Integer getRationAmount() {
return rationAmount;
}
public void setRationAmount(Integer rationAmount) {
this.rationAmount = rationAmount;
}
public Integer getRemainAmount() {
return remainAmount;
}
public void setRemainAmount(Integer remainAmount) {
this.remainAmount = remainAmount;
}
public Integer getMaxApplyAmount() {
return maxApplyAmount;
}
public void setMaxApplyAmount(Integer maxApplyAmount) {
this.maxApplyAmount = maxApplyAmount;
}
public String getNoticeUrl() {
return noticeUrl;
}
public void setNoticeUrl(String noticeUrl) {
this.noticeUrl = noticeUrl;
}
public String getInnerAccount() {
return innerAccount;
}
public void setInnerAccount(String innerAccount) {
this.innerAccount = innerAccount;
}
public Date getConfirmStartDate() {
return confirmStartDate;
}
public void setConfirmStartDate(Date confirmStartDate) {
this.confirmStartDate = confirmStartDate;
}
public Date getConfirmEndDate() {
return confirmEndDate;
}
public void setConfirmEndDate(Date confirmEndDate) {
this.confirmEndDate = confirmEndDate;
}
public String getRationStatus() {
return rationStatus;
}
public void setRationStatus(String rationStatus) {
this.rationStatus = rationStatus;
}
public String getRationResult() {
return rationResult;
}
public void setRationResult(String rationResult) {
this.rationResult = rationResult;
}
public Date getCreateAt() {
return createAt;
}
public void setCreateAt(Date createAt) {
this.createAt = createAt;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
}