0406c1409217aefa16eecb7e5cd359c6530ec7aa.svn-base
1.25 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
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.sys.entity.setdjxl;
import org.hibernate.validator.constraints.Length;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 初审机构设置业务登记类型Entity
* @author xuyg
* @version 2016-12-29
*/
public class SysDjxlOffice extends DataEntity<SysDjxlOffice> {
private static final long serialVersionUID = 1L;
private String officeid; // officeid
private String value; // value
private String label; // label
public SysDjxlOffice() {
super();
}
public SysDjxlOffice(String id){
super(id);
}
@Length(min=1, max=64, message="officeid长度必须介于 1 和 64 之间")
public String getOfficeid() {
return officeid;
}
public void setOfficeid(String officeid) {
this.officeid = officeid;
}
@Length(min=0, max=100, message="value长度必须介于 0 和 100 之间")
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Length(min=0, max=100, message="label长度必须介于 0 和 100 之间")
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}