BaseCustCompanyPark.java
1.5 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
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 BaseCustCompanyPark<M extends BaseCustCompanyPark<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 setPlNo(java.lang.String plNo) {
set("pl_no", plNo);
return (M)this;
}
public java.lang.String getPlNo() {
return get("pl_no");
}
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");
}
}