3f73593fe1775cdf655a1ff78d99e2f29a562e71.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.entity.searchinfo;
import org.hibernate.validator.constraints.Length;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 接口查询表Entity
* @author f
* @version 2018-01-16
*/
public class SRegBusCxxx extends DataEntity<SRegBusCxxx> {
private static final long serialVersionUID = 1L;
private String cxdw; // cxdw
private Date cxsj; // cxsj
private String bcxr; // bcxr
private String bcxrzjh; // bcxrzjh
private String qxdm; // qxdm
private String bdcqzh; // qxdm
private String wsbh; // qxdm
private String gzzbh; // qxdm
private String gwzbh; // qxdm
public SRegBusCxxx() {
super();
}
public SRegBusCxxx(String id){
super(id);
}
@Length(min=0, max=200, message="cxdw长度必须介于 0 和 200 之间")
public String getCxdw() {
return cxdw;
}
public void setCxdw(String cxdw) {
this.cxdw = cxdw;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
public Date getCxsj() {
return cxsj;
}
public void setCxsj(Date cxsj) {
this.cxsj = cxsj;
}
@Length(min=0, max=200, message="bcxr长度必须介于 0 和 200 之间")
public String getBcxr() {
return bcxr;
}
public void setBcxr(String bcxr) {
this.bcxr = bcxr;
}
@Length(min=0, max=50, message="bcxrzjh长度必须介于 0 和 50 之间")
public String getBcxrzjh() {
return bcxrzjh;
}
public void setBcxrzjh(String bcxrzjh) {
this.bcxrzjh = bcxrzjh;
}
@Length(min=0, max=6, message="qxdm长度必须介于 0 和 6 之间")
public String getQxdm() {
return qxdm;
}
public void setQxdm(String qxdm) {
this.qxdm = qxdm;
}
public String getBdcqzh() {
return bdcqzh;
}
public void setBdcqzh(String bdcqzh) {
this.bdcqzh = bdcqzh;
}
public String getWsbh() {
return wsbh;
}
public void setWsbh(String wsbh) {
this.wsbh = wsbh;
}
public String getGzzbh() {
return gzzbh;
}
public void setGzzbh(String gzzbh) {
this.gzzbh = gzzbh;
}
public String getGwzbh() {
return gwzbh;
}
public void setGwzbh(String gwzbh) {
this.gwzbh = gwzbh;
}
}