ec267b00e6bb10072efe7a984a4144ab2f150e1f.svn-base
4.97 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
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.entity.bus;
import org.hibernate.validator.constraints.Length;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import javax.validation.constraints.NotNull;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.thinkgem.jeesite.common.persistence.DataEntity;
import com.thinkgem.jeesite.common.utils.xml.JaxbDateAdapter;
/**
* 归档信息维护Entity
* @author xuyg
* @version 2015-10-09
*/
@XmlRootElement(name="DJF_DJ_GD")
public class RegBusGd extends DataEntity<RegBusGd> {
//xml QXDM="区县代码"
private static final long serialVersionUID = 1L;
private String ywh; // 业务号
private String ysdm; // 要素代码
private String djdl; // 登记大类
private String djxl; // 登记小类
private String zl; // 坐落
private String qzhm; // 权证号码
private String jzh; // 卷宗号
private Integer wjjs; // 文件件数
private Integer zys; // 总页数
private String gdry; // 归档人员
private Date gdsj; // 归档时间
private String bz; // 备注
private String procInsId; // 流程实例ID
private Integer sh;
private Integer gh;
private Integer lh;
private Integer ch;
private Integer wh;
private String dawz;
private String dawzsxh;
private String qllb;
public RegBusGd() {
super();
}
public String getDawzsxh() {
return dawzsxh;
}
public void setDawzsxh(String dawzsxh) {
this.dawzsxh = dawzsxh;
}
public RegBusGd(String id){
super(id);
}
@XmlAttribute(name="YWH")
@Length(min=0, max=20, message="业务号长度必须介于 0 和 20 之间")
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
@XmlAttribute(name="YSDM")
@Length(min=0, max=10, message="要素代码长度必须介于 0 和 10 之间")
public String getYsdm() {
return ysdm;
}
public void setYsdm(String ysdm) {
this.ysdm = ysdm;
}
@XmlAttribute(name="DJDL")
@Length(min=1, max=6, message="登记大类长度必须介于 1 和 6 之间")
public String getDjdl() {
return djdl;
}
public void setDjdl(String djdl) {
this.djdl = djdl;
}
@XmlAttribute(name="DJXL")
@Length(min=1, max=6, message="登记小类长度必须介于 1 和 6 之间")
public String getDjxl() {
return djxl;
}
public void setDjxl(String djxl) {
this.djxl = djxl;
}
@XmlAttribute(name="ZL")
@Length(min=0, max=200, message="坐落长度必须介于 0 和 200 之间")
public String getZl() {
return zl;
}
public void setZl(String zl) {
this.zl = zl;
}
@XmlAttribute(name="QZHM")
public String getQzhm() {
return qzhm;
}
public void setQzhm(String qzhm) {
this.qzhm = qzhm;
}
@XmlTransient
@Length(min=0, max=50, message="卷宗号长度必须介于 0 和 50 之间")
public String getJzh() {
return jzh;
}
public void setJzh(String jzh) {
this.jzh = jzh;
}
@XmlAttribute(name="WJJS")
public Integer getWjjs() {
return wjjs;
}
public void setWjjs(Integer wjjs) {
this.wjjs = wjjs;
}
@XmlAttribute(name="ZYS")
public Integer getZys() {
return zys;
}
public void setZys(Integer zys) {
this.zys = zys;
}
@XmlAttribute(name="GDRY")
@Length(min=0, max=50, message="归档人员长度必须介于 0 和 50 之间")
public String getGdry() {
return gdry;
}
public void setGdry(String gdry) {
this.gdry = gdry;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@NotNull(message="归档时间不能为空")
@XmlAttribute(name="GDSJ")
@XmlJavaTypeAdapter(JaxbDateAdapter.class)
public Date getGdsj() {
return gdsj;
}
public void setGdsj(Date gdsj) {
this.gdsj = gdsj;
}
@XmlAttribute(name="BZ")
@Length(min=0, max=300, message="备注长度必须介于 0 和 300 之间")
public String getBz() {
return bz;
}
public void setBz(String bz) {
this.bz = bz;
}
@XmlTransient
@Length(min=0, max=64, message="流程实例ID长度必须介于 0 和 64 之间")
public String getProcInsId() {
return procInsId;
}
public void setProcInsId(String procInsId) {
this.procInsId = procInsId;
}
@XmlTransient
public Integer getSh() {
return sh;
}
public void setSh(Integer sh) {
this.sh = sh;
}
@XmlTransient
public Integer getGh() {
return gh;
}
public void setGh(Integer gh) {
this.gh = gh;
}
@XmlTransient
public Integer getLh() {
return lh;
}
public void setLh(Integer lh) {
this.lh = lh;
}
@XmlTransient
public Integer getCh() {
return ch;
}
public void setCh(Integer ch) {
this.ch = ch;
}
@XmlTransient
public Integer getWh() {
return wh;
}
public void setWh(Integer wh) {
this.wh = wh;
}
@XmlTransient
public String getDawz() {
return dawz;
}
public void setDawz(String dawz) {
this.dawz = dawz;
}
@XmlTransient
public String getQllb() {
return qllb;
}
public void setQllb(String qllb) {
this.qllb = qllb;
}
}