2e6de8adea5114287d6d35e2a06ef9f1db0483da.svn-base
2.48 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
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.sumdata.entity.datatable;
import org.hibernate.validator.constraints.Length;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* s_reg_bus_rightsEntity
* @author xuyg
* @version 2017-03-08
*/
public class SRegBusRights extends DataEntity<SRegBusRights> {
private static final long serialVersionUID = 1L;
private String sareaCode; // s_area_code
private String bdcdyh; // bdcdyh
private String ssouyq; // ssouyq
private String stxq; // stxq
private String sshiyq; // sshiyq
private String xsouyq; // xsouyq
private String xtxq; // xtxq
private String xshiyq; // xshiyq
private String qxid; // qxid
public String getQxid() {
return qxid;
}
public void setQxid(String qxid) {
this.qxid = qxid;
}
public SRegBusRights() {
super();
}
public SRegBusRights(String id){
super(id);
}
@Length(min=1, max=6, message="s_area_code长度必须介于 1 和 6 之间")
public String getSareaCode() {
return sareaCode;
}
public void setSareaCode(String sareaCode) {
this.sareaCode = sareaCode;
}
@Length(min=0, max=28, message="bdcdyh长度必须介于 0 和 28 之间")
public String getBdcdyh() {
return bdcdyh;
}
public void setBdcdyh(String bdcdyh) {
this.bdcdyh = bdcdyh;
}
@Length(min=0, max=20, message="ssouyq长度必须介于 0 和 20 之间")
public String getSsouyq() {
return ssouyq;
}
public void setSsouyq(String ssouyq) {
this.ssouyq = ssouyq;
}
@Length(min=0, max=20, message="stxq长度必须介于 0 和 20 之间")
public String getStxq() {
return stxq;
}
public void setStxq(String stxq) {
this.stxq = stxq;
}
@Length(min=0, max=20, message="sshiyq长度必须介于 0 和 20 之间")
public String getSshiyq() {
return sshiyq;
}
public void setSshiyq(String sshiyq) {
this.sshiyq = sshiyq;
}
@Length(min=0, max=20, message="xsouyq长度必须介于 0 和 20 之间")
public String getXsouyq() {
return xsouyq;
}
public void setXsouyq(String xsouyq) {
this.xsouyq = xsouyq;
}
@Length(min=0, max=20, message="xtxq长度必须介于 0 和 20 之间")
public String getXtxq() {
return xtxq;
}
public void setXtxq(String xtxq) {
this.xtxq = xtxq;
}
@Length(min=0, max=20, message="xshiyq长度必须介于 0 和 20 之间")
public String getXshiyq() {
return xshiyq;
}
public void setXshiyq(String xshiyq) {
this.xshiyq = xshiyq;
}
}