1886fb3c3ec1b86936c584e33b0a495d1c0b99cb.svn-base
6.01 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
260
261
262
/**
* 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 com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 构筑物所有权信息维护Entity
* @author xuyg
* @version 2015-10-15
*/
public class RegBusGjzwsyq extends DataEntity<RegBusGjzwsyq> {
private static final long serialVersionUID = 1L;
private String ysdm; // 要素代码
private String bdcdyh; // 不动产单元号
private String ywh; // 业务号
private String qllx; // 权利类型
private String djlx; // 登记类型
private String djyy; // 登记原因
private String zl; // 坐落
private String tdhysyqr; // 土地/海域使用权人
private Double tdhysymj; // 土地/海域使用面积
private Date tdhysyqssj; // 土地/海域使用起始时间
private Date tdhysyjssj; // 土地/海域使用结束时间
private String gjzwlx; // 构(建)筑物类型
private String gjzwghyt; // 构(建)筑物规划用途
private Double gjzwmj; // 构(建)筑物面积
private String jgsj; // 竣工时间
private String bdcqzh; // 不动产权证号
private String qxdm; // 区县代码
private String djjg; // 登记机构
private String dbr; // 登簿人
private Date djsj; // 登记时间
private String fj; // 附记
private String gjzwpmt; // 构(建)筑物平面图
private String qszt; // 权属状态
public RegBusGjzwsyq() {
super();
}
public RegBusGjzwsyq(String id){
super(id);
}
@Length(min=0, max=10, message="要素代码长度必须介于 0 和 10 之间")
public String getYsdm() {
return ysdm;
}
public void setYsdm(String ysdm) {
this.ysdm = ysdm;
}
@Length(min=1, max=28, message="不动产单元号长度必须介于 1 和 28 之间")
public String getBdcdyh() {
return bdcdyh;
}
public void setBdcdyh(String bdcdyh) {
this.bdcdyh = bdcdyh;
}
@Length(min=0, max=20, message="业务号长度必须介于 0 和 20 之间")
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
@Length(min=1, max=2, message="权利类型长度必须介于 1 和 2 之间")
public String getQllx() {
return qllx;
}
public void setQllx(String qllx) {
this.qllx = qllx;
}
@Length(min=0, max=6, message="登记类型长度必须介于 0 和 6 之间")
public String getDjlx() {
return djlx;
}
public void setDjlx(String djlx) {
this.djlx = djlx;
}
@Length(min=1, max=500, message="登记原因长度必须介于 1 和 500 之间")
public String getDjyy() {
return djyy;
}
public void setDjyy(String djyy) {
this.djyy = djyy;
}
@Length(min=1, max=200, message="坐落长度必须介于 1 和 200 之间")
public String getZl() {
return zl;
}
public void setZl(String zl) {
this.zl = zl;
}
@Length(min=1, max=100, message="土地/海域使用权人长度必须介于 1 和 100 之间")
public String getTdhysyqr() {
return tdhysyqr;
}
public void setTdhysyqr(String tdhysyqr) {
this.tdhysyqr = tdhysyqr;
}
public Double getTdhysymj() {
return tdhysymj;
}
public void setTdhysymj(Double tdhysymj) {
this.tdhysymj = tdhysymj;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@NotNull(message="土地/海域使用起始时间不能为空")
public Date getTdhysyqssj() {
return tdhysyqssj;
}
public void setTdhysyqssj(Date tdhysyqssj) {
this.tdhysyqssj = tdhysyqssj;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@NotNull(message="土地/海域使用结束时间不能为空")
public Date getTdhysyjssj() {
return tdhysyjssj;
}
public void setTdhysyjssj(Date tdhysyjssj) {
this.tdhysyjssj = tdhysyjssj;
}
@Length(min=0, max=2, message="构(建)筑物类型长度必须介于 0 和 2 之间")
public String getGjzwlx() {
return gjzwlx;
}
public void setGjzwlx(String gjzwlx) {
this.gjzwlx = gjzwlx;
}
@Length(min=1, max=200, message="构(建)筑物规划用途长度必须介于 1 和 200 之间")
public String getGjzwghyt() {
return gjzwghyt;
}
public void setGjzwghyt(String gjzwghyt) {
this.gjzwghyt = gjzwghyt;
}
public Double getGjzwmj() {
return gjzwmj;
}
public void setGjzwmj(Double gjzwmj) {
this.gjzwmj = gjzwmj;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@NotNull(message="竣工时间不能为空")
public String getJgsj() {
return jgsj;
}
public void setJgsj(String jgsj) {
this.jgsj = jgsj;
}
@Length(min=1, max=50, message="不动产权证号长度必须介于 1 和 50 之间")
public String getBdcqzh() {
return bdcqzh;
}
public void setBdcqzh(String bdcqzh) {
this.bdcqzh = bdcqzh;
}
@Length(min=0, max=6, message="区县代码长度必须介于 0 和 6 之间")
public String getQxdm() {
return qxdm;
}
public void setQxdm(String qxdm) {
this.qxdm = qxdm;
}
@Length(min=1, max=200, message="登记机构长度必须介于 1 和 200 之间")
public String getDjjg() {
return djjg;
}
public void setDjjg(String djjg) {
this.djjg = djjg;
}
@Length(min=1, max=50, message="登簿人长度必须介于 1 和 50 之间")
public String getDbr() {
return dbr;
}
public void setDbr(String dbr) {
this.dbr = dbr;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@NotNull(message="登记时间不能为空")
public Date getDjsj() {
return djsj;
}
public void setDjsj(Date djsj) {
this.djsj = djsj;
}
@Length(min=0, max=300, message="附记长度必须介于 0 和 300 之间")
public String getFj() {
return fj;
}
public void setFj(String fj) {
this.fj = fj;
}
@Length(min=0, max=100, message="构(建)筑物平面图长度必须介于 0 和 100 之间")
public String getGjzwpmt() {
return gjzwpmt;
}
public void setGjzwpmt(String gjzwpmt) {
this.gjzwpmt = gjzwpmt;
}
@Length(min=0, max=2, message="权属状态长度必须介于 0 和 2 之间")
public String getQszt() {
return qszt;
}
public void setQszt(String qszt) {
this.qszt = qszt;
}
}