BasePushMsg.java
2.75 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
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 BasePushMsg<M extends BasePushMsg<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 setMsgTitle(java.lang.String msgTitle) {
set("msg_title", msgTitle);
return (M)this;
}
public java.lang.String getMsgTitle() {
return get("msg_title");
}
public M setMsgContent(java.lang.String msgContent) {
set("msg_content", msgContent);
return (M)this;
}
public java.lang.String getMsgContent() {
return get("msg_content");
}
public M setMsgType(java.lang.Integer msgType) {
set("msg_type", msgType);
return (M)this;
}
public java.lang.Integer getMsgType() {
return get("msg_type");
}
public M setTempleteId(java.lang.String templeteId) {
set("templete_id", templeteId);
return (M)this;
}
public java.lang.String getTempleteId() {
return get("templete_id");
}
public M setPushType(java.lang.Integer pushType) {
set("push_type", pushType);
return (M)this;
}
public java.lang.Integer getPushType() {
return get("push_type");
}
public M setReturnType(java.lang.Integer returnType) {
set("return_type", returnType);
return (M)this;
}
public java.lang.Integer getReturnType() {
return get("return_type");
}
public M setReadType(java.lang.Integer readType) {
set("read_type", readType);
return (M)this;
}
public java.lang.Integer getReadType() {
return get("read_type");
}
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");
}
}