ecfdf460e748e458481cfc7becd56fed161adbba.svn-base
4.89 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.sumdata.entity.datatable;
import org.hibernate.validator.constraints.Length;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* s_reg_bus_gdEntity
* @author xuyg
* @version 2017-03-08
*/
public class SRegBusGd extends DataEntity<SRegBusGd> {
private static final long serialVersionUID = 1L;
private String sareaCode; // s_area_code
private String ywh; // ywh
private String ysdm; // ysdm
private String djdl; // djdl
private String djxl; // djxl
private String zl; // zl
private String qzhm; // qzhm
private String jzh; // jzh
private Integer wjjs; // wjjs
private Integer zys; // zys
private String gdry; // gdry
private Date gdsj; // gdsj
private String bz; // bz
private Integer gh; // gh
private Integer lh; // lh
private Integer ch; // ch
private Integer wh; // wh
private Integer sh; // sh
private String dawz; // dawz
private String dawzsxh; // dawzsxh
private String qllb; // qllb
private String procInsId; // proc_ins_id
private String qxid; // qxid
private String dah;
public SRegBusGd() {
super();
}
public String getQxid() {
return qxid;
}
public void setQxid(String qxid) {
this.qxid = qxid;
}
public SRegBusGd(String id){
super(id);
}
public String getDah() {
return dah;
}
public void setDah(String dah) {
this.dah = dah;
}
@Length(min=1, max=6, message="s_area_code长度必须介于 1 和 6 之间")
public String getSareaCode() {
return sareaCode;
}
public void setSareaCode(String sareaCode) {
this.sareaCode = sareaCode;
}
@Length(min=0, max=20, message="ywh长度必须介于 0 和 20 之间")
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
@Length(min=0, max=10, message="ysdm长度必须介于 0 和 10 之间")
public String getYsdm() {
return ysdm;
}
public void setYsdm(String ysdm) {
this.ysdm = ysdm;
}
@Length(min=0, max=6, message="djdl长度必须介于 0 和 6 之间")
public String getDjdl() {
return djdl;
}
public void setDjdl(String djdl) {
this.djdl = djdl;
}
@Length(min=0, max=6, message="djxl长度必须介于 0 和 6 之间")
public String getDjxl() {
return djxl;
}
public void setDjxl(String djxl) {
this.djxl = djxl;
}
@Length(min=0, max=200, message="zl长度必须介于 0 和 200 之间")
public String getZl() {
return zl;
}
public void setZl(String zl) {
this.zl = zl;
}
@Length(min=0, max=200, message="qzhm长度必须介于 0 和 200 之间")
public String getQzhm() {
return qzhm;
}
public void setQzhm(String qzhm) {
this.qzhm = qzhm;
}
@Length(min=0, max=50, message="jzh长度必须介于 0 和 50 之间")
public String getJzh() {
return jzh;
}
public void setJzh(String jzh) {
this.jzh = jzh;
}
public Integer getWjjs() {
return wjjs;
}
public void setWjjs(Integer wjjs) {
this.wjjs = wjjs;
}
public Integer getZys() {
return zys;
}
public void setZys(Integer zys) {
this.zys = zys;
}
@Length(min=0, max=50, message="gdry长度必须介于 0 和 50 之间")
public String getGdry() {
return gdry;
}
public void setGdry(String gdry) {
this.gdry = gdry;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
public Date getGdsj() {
return gdsj;
}
public void setGdsj(Date gdsj) {
this.gdsj = gdsj;
}
@Length(min=0, max=300, message="bz长度必须介于 0 和 300 之间")
public String getBz() {
return bz;
}
public void setBz(String bz) {
this.bz = bz;
}
public Integer getGh() {
return gh;
}
public void setGh(Integer gh) {
this.gh = gh;
}
public Integer getLh() {
return lh;
}
public void setLh(Integer lh) {
this.lh = lh;
}
public Integer getCh() {
return ch;
}
public void setCh(Integer ch) {
this.ch = ch;
}
public Integer getWh() {
return wh;
}
public void setWh(Integer wh) {
this.wh = wh;
}
public Integer getSh() {
return sh;
}
public void setSh(Integer sh) {
this.sh = sh;
}
@Length(min=0, max=20, message="dawz长度必须介于 0 和 20 之间")
public String getDawz() {
return dawz;
}
public void setDawz(String dawz) {
this.dawz = dawz;
}
@Length(min=0, max=50, message="dawzsxh长度必须介于 0 和 50 之间")
public String getDawzsxh() {
return dawzsxh;
}
public void setDawzsxh(String dawzsxh) {
this.dawzsxh = dawzsxh;
}
@Length(min=0, max=15, message="qllb长度必须介于 0 和 15 之间")
public String getQllb() {
return qllb;
}
public void setQllb(String qllb) {
this.qllb = qllb;
}
@Length(min=0, max=64, message="proc_ins_id长度必须介于 0 和 64 之间")
public String getProcInsId() {
return procInsId;
}
public void setProcInsId(String procInsId) {
this.procInsId = procInsId;
}
}