BaseCustPerson.java
4.2 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package com.rnt.model.zf.base;
import com.jfinal.plugin.activerecord.Model;
import com.jfinal.plugin.activerecord.IBean;
/**
* Generated by JFinal, do not modify this file.
*/
@SuppressWarnings({"serial", "unchecked"})
public abstract class BaseCustPerson<M extends BaseCustPerson<M>> extends Model<M> implements IBean {
public M setId(java.lang.Long id) {
set("id", id);
return (M)this;
}
public java.lang.Long getId() {
return get("id");
}
public M setCustId(java.lang.String custId) {
set("cust_id", custId);
return (M)this;
}
public java.lang.String getCustId() {
return get("cust_id");
}
public M setCustName(java.lang.String custName) {
set("cust_name", custName);
return (M)this;
}
public java.lang.String getCustName() {
return get("cust_name");
}
public M setUserName(java.lang.String userName) {
set("user_name", userName);
return (M)this;
}
public java.lang.String getUserName() {
return get("user_name");
}
public M setUserPassword(java.lang.String userPassword) {
set("user_password", userPassword);
return (M)this;
}
public java.lang.String getUserPassword() {
return get("user_password");
}
public M setUserPhone(java.lang.String userPhone) {
set("user_phone", userPhone);
return (M)this;
}
public java.lang.String getUserPhone() {
return get("user_phone");
}
public M setSex(java.lang.Integer sex) {
set("sex", sex);
return (M)this;
}
public java.lang.Integer getSex() {
return get("sex");
}
public M setEmail(java.lang.String email) {
set("email", email);
return (M)this;
}
public java.lang.String getEmail() {
return get("email");
}
public M setCustType(java.lang.Integer custType) {
set("cust_type", custType);
return (M)this;
}
public java.lang.Integer getCustType() {
return get("cust_type");
}
public M setParentId(java.lang.Long parentId) {
set("parent_id", parentId);
return (M)this;
}
public java.lang.Long getParentId() {
return get("parent_id");
}
public M setCerType(java.lang.Integer cerType) {
set("cer_type", cerType);
return (M)this;
}
public java.lang.Integer getCerType() {
return get("cer_type");
}
public M setCerNumber(java.lang.String cerNumber) {
set("cer_number", cerNumber);
return (M)this;
}
public java.lang.String getCerNumber() {
return get("cer_number");
}
public M setDeivceType(java.lang.Integer deivceType) {
set("deivce_type", deivceType);
return (M)this;
}
public java.lang.Integer getDeivceType() {
return get("deivce_type");
}
public M setDeviceNo(java.lang.String deviceNo) {
set("device_no", deviceNo);
return (M)this;
}
public java.lang.String getDeviceNo() {
return get("device_no");
}
public M setProvId(java.lang.String provId) {
set("prov_id", provId);
return (M)this;
}
public java.lang.String getProvId() {
return get("prov_id");
}
public M setCityId(java.lang.String cityId) {
set("city_id", cityId);
return (M)this;
}
public java.lang.String getCityId() {
return get("city_id");
}
public M setAreaId(java.lang.String areaId) {
set("area_id", areaId);
return (M)this;
}
public java.lang.String getAreaId() {
return get("area_id");
}
public M setRemark(java.lang.String remark) {
set("remark", remark);
return (M)this;
}
public java.lang.String getRemark() {
return get("remark");
}
public M setDataState(java.lang.Integer dataState) {
set("data_state", dataState);
return (M)this;
}
public java.lang.Integer getDataState() {
return get("data_state");
}
public M setCreateEmpid(java.lang.String createEmpid) {
set("create_empid", createEmpid);
return (M)this;
}
public java.lang.String getCreateEmpid() {
return get("create_empid");
}
public M setCreateDate(java.util.Date createDate) {
set("create_date", createDate);
return (M)this;
}
public java.util.Date getCreateDate() {
return get("create_date");
}
public M setModfiyEmpid(java.lang.String modfiyEmpid) {
set("modfiy_empid", modfiyEmpid);
return (M)this;
}
public java.lang.String getModfiyEmpid() {
return get("modfiy_empid");
}
public M setModfiyDate(java.util.Date modfiyDate) {
set("modfiy_date", modfiyDate);
return (M)this;
}
public java.util.Date getModfiyDate() {
return get("modfiy_date");
}
}