QuotaConfigInfo.java
3.67 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
package com.cjs.site.model.quota;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.cjs.site.model.BaseInfo;
/**
* 权益分配
* @author tongxiaochuan
*
*/
public class QuotaConfigInfo extends BaseInfo {
private static final long serialVersionUID = -1836155626803116752L;
private Integer id;
private String otcCode;
private String otcName;
private String trustOtcCode;
private String trustOtcName;
private Integer percent;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date validStartDate;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date validEndDate;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date tradeStartDate;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date tradeEndDate;
private String allot;
private Date createAt;
private String createBy;
private Date updateAt;
private String updateBy;
private QuotaUserInfo quotaUserInfo;
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 String getTrustOtcCode() {
return trustOtcCode;
}
public void setTrustOtcCode(String trustOtcCode) {
this.trustOtcCode = trustOtcCode;
}
public String getTrustOtcName() {
return trustOtcName;
}
public void setTrustOtcName(String trustOtcName) {
this.trustOtcName = trustOtcName;
}
public Integer getPercent() {
return percent;
}
public void setPercent(Integer percent) {
this.percent = percent;
}
public Date getValidStartDate() {
return validStartDate;
}
public void setValidStartDate(Date validStartDate) {
this.validStartDate = validStartDate;
}
public Date getValidEndDate() {
return validEndDate;
}
public void setValidEndDate(Date validEndDate) {
this.validEndDate = validEndDate;
}
public Date getTradeStartDate() {
return tradeStartDate;
}
public void setTradeStartDate(Date tradeStartDate) {
this.tradeStartDate = tradeStartDate;
}
public Date getTradeEndDate() {
return tradeEndDate;
}
public void setTradeEndDate(Date tradeEndDate) {
this.tradeEndDate = tradeEndDate;
}
public String getAllot() {
return allot;
}
public void setAllot(String allot) {
this.allot = allot;
}
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;
}
public Date getUpdateAt() {
return updateAt;
}
public void setUpdateAt(Date updateAt) {
this.updateAt = updateAt;
}
public String getUpdateBy() {
return updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy;
}
public QuotaUserInfo getQuotaUserInfo() {
return quotaUserInfo;
}
public void setQuotaUserInfo(QuotaUserInfo quotaUserInfo) {
this.quotaUserInfo = quotaUserInfo;
}
}