0124a0e8b90c0ad73f61c2f155a72a4885093815.svn-base
2.29 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.bus;
import org.hibernate.validator.constraints.Length;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 确权信息维护Entity
* @author xuyg
* @version 2016-04-23
*/
public class RegBusRights extends DataEntity<RegBusRights> {
private static final long serialVersionUID = 1L;
private String bdcdyh; // 不动产单元号
private String ssouyq; // 实所有权业务号
private String stxq; // 实他项权业务号
private String sshiyq; // 实使用权业务号
private String xsouyq; // 虚所有权业务号
private String xtxq; // 虚他项权业务号
private String xshiyq; // 虚使用权业务号
public RegBusRights() {
super();
}
public RegBusRights(String id){
super(id);
}
@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 getSsouyq() {
return ssouyq;
}
public void setSsouyq(String ssouyq) {
this.ssouyq = ssouyq;
}
@Length(min=0, max=20, message="实他项权业务号长度必须介于 0 和 20 之间")
public String getStxq() {
return stxq;
}
public void setStxq(String stxq) {
this.stxq = stxq;
}
@Length(min=0, max=20, message="实使用权业务号长度必须介于 0 和 20 之间")
public String getSshiyq() {
return sshiyq;
}
public void setSshiyq(String sshiyq) {
this.sshiyq = sshiyq;
}
@Length(min=0, max=20, message="虚所有权业务号长度必须介于 0 和 20 之间")
public String getXsouyq() {
return xsouyq;
}
public void setXsouyq(String xsouyq) {
this.xsouyq = xsouyq;
}
@Length(min=0, max=20, message="虚他项权业务号长度必须介于 0 和 20 之间")
public String getXtxq() {
return xtxq;
}
public void setXtxq(String xtxq) {
this.xtxq = xtxq;
}
@Length(min=0, max=20, message="虚使用权业务号长度必须介于 0 和 20 之间")
public String getXshiyq() {
return xshiyq;
}
public void setXshiyq(String xshiyq) {
this.xshiyq = xshiyq;
}
}