f68a1778ebde376a1f69edd33abe4784e4d82f67.svn-base
9.09 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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/**
* 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 com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 抵押权信息维护Entity
* @author xuyg
* @version 2015-10-15
*/
@XmlRootElement(name="QLF_QL_DYAQ")
public class RegBusDyaq extends DataEntity<RegBusDyaq> {
//xml DYJELX="抵押金额类型" SCYWH="上次业务号"
private static final long serialVersionUID = 1L;
private String bdcdyh; // 不动产单元号
private String ywh; // 业务号
private String dybdclx; // 抵押不动产类型
private String dyr; // 抵押人
private String zwr; // 债务人
private String zwrzjzl; // 债务人证件种类
private String zwrzjh; // 债务人证件号
private String dyfs; // 抵押方式
private String djlx; // 登记类型
private String djyy; // 登记原因
private String zjjzwzl; // 在建建筑物坐落
private String zjjzwdyfw; // 在建建筑物抵押范围
private Double bdbzzqse; // 被担保主债权数额
private Double dbze; // 担保总额
private Double pgjz; // 评估价值
private Double pgjzhj; // 评估价值合计
private String jzmjhj; // 建筑面积合计
private Date zwlxqssj; // 债务履行起始时间
private Date zwlxjssj; // 债务履行结束时间
private String zgzqqdss; // 最高债权确定事实
private Double zgzqse; // 最高债权数额
private String zxdyywh; // 注销抵押业务号
private String zxdyyy; // 注销抵押原因
private Date zxsj; // 注销时间
private String bdcdjzmh;// 不动产登记证明号
private String qxdm; // 区县代码
private String djjg; // 登记机构
private String dbr; // 登簿人
private Date djsj; // 登记时间
private String fj; // 附记
private String qszt; // 权属状态
private String ysdm; // 要素代码
private String tdzh; //土地证号
private String dyqr; //抵押权人
private String dygyr;//抵押共有人
private Integer isfdsj; //0:正常办理,1:分割合并变更更正附带确权产生数据
public RegBusDyaq() {
super();
}
public RegBusDyaq(String id){
super(id);
}
@XmlAttribute(name="BDCDYH")
public String getBdcdyh() {
return bdcdyh;
}
public void setBdcdyh(String bdcdyh) {
this.bdcdyh = bdcdyh;
}
@XmlAttribute(name="YWH")
@Length(min=0, max=20, message="业务号长度必须介于 0 和 20 之间")
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
@Length(min=0, max=2, message="抵押不动产类型长度必须介于 0 和 2 之间")
@XmlAttribute(name="DYBDCLX")
public String getDybdclx() {
return dybdclx;
}
public void setDybdclx(String dybdclx) {
this.dybdclx = dybdclx;
}
@Length(min=0, max=50, message="抵押人长度必须介于 0 和 50 之间")
@XmlAttribute(name="DYR")
public String getDyr() {
return dyr;
}
public void setDyr(String dyr) {
this.dyr = dyr;
}
@XmlTransient
public Integer getIsfdsj() {
return isfdsj;
}
public void setIsfdsj(Integer isfdsj) {
this.isfdsj = isfdsj;
}
@XmlAttribute(name="DYFS")
@Length(min=0, max=2, message="抵押方式长度必须介于 0 和 2 之间")
public String getDyfs() {
return dyfs;
}
public void setDyfs(String dyfs) {
this.dyfs = dyfs;
}
@XmlAttribute(name="DJLX")
@Length(min=0, max=6, message="登记类型长度必须介于 0 和 6 之间")
public String getDjlx() {
return djlx;
}
public void setDjlx(String djlx) {
this.djlx = djlx;
}
@XmlTransient
public String getZwr() {
return zwr;
}
public void setZwr(String zwr) {
this.zwr = zwr;
}
@XmlTransient
public String getZwrzjzl() {
return zwrzjzl;
}
public void setZwrzjzl(String zwrzjzl) {
this.zwrzjzl = zwrzjzl;
}
public String getZwrzjh() {
return zwrzjh;
}
public void setZwrzjh(String zwrzjh) {
this.zwrzjh = zwrzjh;
}
public Double getPgjz() {
return pgjz;
}
public void setPgjz(Double pgjz) {
this.pgjz = pgjz;
}
public Double getPgjzhj() {
return pgjzhj;
}
public void setPgjzhj(Double pgjzhj) {
this.pgjzhj = pgjzhj;
}
public String getJzmjhj() {
return jzmjhj;
}
public void setJzmjhj(String jzmjhj) {
this.jzmjhj = jzmjhj;
}
@XmlAttribute(name="DJYY")
@Length(min=1, max=500, message="登记原因长度必须介于 1 和 500 之间")
public String getDjyy() {
return djyy;
}
public void setDjyy(String djyy) {
this.djyy = djyy;
}
@XmlAttribute(name="ZJJZWZL")
@Length(min=1, max=200, message="在建建筑物坐落长度必须介于 1 和 200 之间")
public String getZjjzwzl() {
return zjjzwzl;
}
public void setZjjzwzl(String zjjzwzl) {
this.zjjzwzl = zjjzwzl;
}
//@Length(min=1, max=100, message="在建建筑物抵押范围长度必须介于 1 和 100 之间")
@XmlAttribute(name="ZJJZWDYFW")
public String getZjjzwdyfw() {
return zjjzwdyfw;
}
public void setZjjzwdyfw(String zjjzwdyfw) {
this.zjjzwdyfw = zjjzwdyfw;
}
@XmlAttribute(name="BDBZZQSE")
public Double getBdbzzqse() {
return bdbzzqse;
}
public void setBdbzzqse(Double bdbzzqse) {
this.bdbzzqse = bdbzzqse;
}
public Double getDbze() {
return dbze;
}
public void setDbze(Double dbze) {
this.dbze = dbze;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@NotNull(message="债务履行起始时间不能为空")
@XmlAttribute(name="ZWLXQSSJ")
public Date getZwlxqssj() {
return zwlxqssj;
}
public void setZwlxqssj(Date zwlxqssj) {
this.zwlxqssj = zwlxqssj;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@NotNull(message="债务履行结束时间不能为空")
@XmlAttribute(name="ZWLXJSSJ")
public Date getZwlxjssj() {
return zwlxjssj;
}
public void setZwlxjssj(Date zwlxjssj) {
this.zwlxjssj = zwlxjssj;
}
@XmlAttribute(name="ZGZQQDSS")
@Length(min=0, max=100, message="最高债权确定事实长度必须介于 0 和 100 之间")
public String getZgzqqdss() {
return zgzqqdss;
}
public void setZgzqqdss(String zgzqqdss) {
this.zgzqqdss = zgzqqdss;
}
@XmlAttribute(name="ZGZQSE")
public Double getZgzqse() {
return zgzqse;
}
public void setZgzqse(Double zgzqse) {
this.zgzqse = zgzqse;
}
@XmlAttribute(name="ZXDYYWH")
@Length(min=0, max=20, message="注销抵押业务号长度必须介于 0 和 20 之间")
public String getZxdyywh() {
return zxdyywh;
}
public void setZxdyywh(String zxdyywh) {
this.zxdyywh = zxdyywh;
}
@XmlAttribute(name="ZXDYYY")
@Length(min=0, max=100, message="注销抵押原因长度必须介于 0 和 100 之间")
public String getZxdyyy() {
return zxdyyy;
}
public void setZxdyyy(String zxdyyy) {
this.zxdyyy = zxdyyy;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//@NotNull(message="注销时间不能为空")
@XmlAttribute(name="ZXSJ")
public Date getZxsj() {
return zxsj;
}
public void setZxsj(Date zxsj) {
this.zxsj = zxsj;
}
//@Length(min=1, max=50, message="不动产登记证明号长度必须介于 1 和 50 之间")
@XmlAttribute(name="BDCDJZMH")
public String getBdcdjzmh() {
return bdcdjzmh;
}
public void setBdcdjzmh(String bdcdjzmh) {
this.bdcdjzmh = bdcdjzmh;
}
@XmlAttribute(name="QXDM")
@Length(min=0, max=6, message="区县代码长度必须介于 0 和 6 之间")
public String getQxdm() {
return qxdm;
}
public void setQxdm(String qxdm) {
this.qxdm = qxdm;
}
@XmlAttribute(name="DJJG")
@Length(min=0, max=200, message="登记机构长度必须介于 0 和 200 之间")
public String getDjjg() {
return djjg;
}
public void setDjjg(String djjg) {
this.djjg = djjg;
}
@XmlAttribute(name="DBR")
@Length(min=0, max=50, message="登簿人长度必须介于 0 和 50 之间")
public String getDbr() {
return dbr;
}
public void setDbr(String dbr) {
this.dbr = dbr;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
// @NotNull(message="登记时间不能为空")
@XmlAttribute(name="DJSJ")
public Date getDjsj() {
return djsj;
}
public void setDjsj(Date djsj) {
this.djsj = djsj;
}
@XmlAttribute(name="FJ")
@Length(min=0, max=300, message="附记长度必须介于 0 和 300 之间")
public String getFj() {
return fj;
}
public void setFj(String fj) {
this.fj = fj;
}
@XmlAttribute(name="QSZT")
@Length(min=0, max=2, message="权属状态长度必须介于 0 和 2 之间")
public String getQszt() {
return qszt;
}
public void setQszt(String qszt) {
this.qszt = qszt;
}
@XmlAttribute(name="YSDM")
@Length(min=0, max=10, message="要素代码长度必须介于 0 和 10 之间")
public String getYsdm() {
return ysdm;
}
public void setYsdm(String ysdm) {
this.ysdm = ysdm;
}
public String getTdzh() {
return tdzh;
}
public void setTdzh(String tdzh) {
this.tdzh = tdzh;
}
public String getDyqr() {
return dyqr;
}
public void setDyqr(String dyqr) {
this.dyqr = dyqr;
}
public String getDygyr() {
return dygyr;
}
public void setDygyr(String dygyr) {
this.dygyr = dygyr;
}
}