7abc4ab070248376ff1b9bb9a5d52eff1c20b4a4.svn-base
2.21 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
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.entity.qjxt;
import org.hibernate.validator.constraints.Length;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 权籍系统房屋分割后情况表单处理Entity
* @author xuyg
* @version 2018-11-08
*/
public class BdcFghbqkb extends DataEntity<BdcFghbqkb> {
private static final long serialVersionUID = 1L;
private String oldfwbm; // oldfwbm
private String newfwbm; // newfwbm
private String oldchzt; // oldchzt
private String newchzt; // newchzt
private String fhlx; // fhlx
private String oldbdcdyh; // oldbdcdyh
private String newbdcdyh; // newbdcdyh
public BdcFghbqkb() {
super();
}
public BdcFghbqkb(String id){
super(id);
}
@Length(min=0, max=26, message="oldfwbm长度必须介于 0 和 26 之间")
public String getOldfwbm() {
return oldfwbm;
}
public void setOldfwbm(String oldfwbm) {
this.oldfwbm = oldfwbm;
}
@Length(min=0, max=26, message="newfwbm长度必须介于 0 和 26 之间")
public String getNewfwbm() {
return newfwbm;
}
public void setNewfwbm(String newfwbm) {
this.newfwbm = newfwbm;
}
@Length(min=0, max=2, message="oldchzt长度必须介于 0 和 2 之间")
public String getOldchzt() {
return oldchzt;
}
public void setOldchzt(String oldchzt) {
this.oldchzt = oldchzt;
}
@Length(min=0, max=2, message="newchzt长度必须介于 0 和 2 之间")
public String getNewchzt() {
return newchzt;
}
public void setNewchzt(String newchzt) {
this.newchzt = newchzt;
}
@Length(min=0, max=2, message="fhlx长度必须介于 0 和 2 之间")
public String getFhlx() {
return fhlx;
}
public void setFhlx(String fhlx) {
this.fhlx = fhlx;
}
@Length(min=0, max=28, message="oldbdcdyh长度必须介于 0 和 28 之间")
public String getOldbdcdyh() {
return oldbdcdyh;
}
public void setOldbdcdyh(String oldbdcdyh) {
this.oldbdcdyh = oldbdcdyh;
}
@Length(min=0, max=28, message="newbdcdyh长度必须介于 0 和 28 之间")
public String getNewbdcdyh() {
return newbdcdyh;
}
public void setNewbdcdyh(String newbdcdyh) {
this.newbdcdyh = newbdcdyh;
}
}