e80df919
atao
init
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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 BasePayBlncac<M extends BasePayBlncac<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");
}
|
d24e0b2b
王富生
提交修改
|
21
22
|
public M setPayOrderId(java.lang.String payOrderId) {
set("pay_order_id", payOrderId);
|
e80df919
atao
init
|
23
24
25
|
return (M)this;
}
|
d24e0b2b
王富生
提交修改
|
26
27
|
public java.lang.String getPayOrderId() {
return get("pay_order_id");
|
e80df919
atao
init
|
28
29
|
}
|
d24e0b2b
王富生
提交修改
|
30
31
|
public M setRltPayOrderId(java.lang.String rltPayOrderId) {
set("rlt_pay_order_id", rltPayOrderId);
|
e80df919
atao
init
|
32
33
34
|
return (M)this;
}
|
d24e0b2b
王富生
提交修改
|
35
36
|
public java.lang.String getRltPayOrderId() {
return get("rlt_pay_order_id");
|
e80df919
atao
init
|
37
38
|
}
|
d24e0b2b
王富生
提交修改
|
39
40
|
public M setBusType(java.lang.Integer busType) {
set("bus_type", busType);
|
e80df919
atao
init
|
41
42
43
|
return (M)this;
}
|
d24e0b2b
王富生
提交修改
|
44
45
|
public java.lang.Integer getBusType() {
return get("bus_type");
|
e80df919
atao
init
|
46
47
|
}
|
d24e0b2b
王富生
提交修改
|
48
49
|
public M setOrderRefundId(java.lang.String orderRefundId) {
set("order_refund_id", orderRefundId);
|
e80df919
atao
init
|
50
51
52
|
return (M)this;
}
|
d24e0b2b
王富生
提交修改
|
53
54
|
public java.lang.String getOrderRefundId() {
return get("order_refund_id");
|
e80df919
atao
init
|
55
56
|
}
|
d24e0b2b
王富生
提交修改
|
57
58
|
public M setPayCreateTime(java.util.Date payCreateTime) {
set("pay_create_time", payCreateTime);
|
e80df919
atao
init
|
59
60
61
|
return (M)this;
}
|
d24e0b2b
王富生
提交修改
|
62
63
|
public java.util.Date getPayCreateTime() {
return get("pay_create_time");
|
e80df919
atao
init
|
64
65
|
}
|
d24e0b2b
王富生
提交修改
|
66
67
|
public M setPayFinishTime(java.util.Date payFinishTime) {
set("pay_finish_time", payFinishTime);
|
e80df919
atao
init
|
68
69
70
|
return (M)this;
}
|
d24e0b2b
王富生
提交修改
|
71
72
|
public java.util.Date getPayFinishTime() {
return get("pay_finish_time");
|
e80df919
atao
init
|
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
|
}
public M setPayAccount(java.lang.String payAccount) {
set("pay_account", payAccount);
return (M)this;
}
public java.lang.String getPayAccount() {
return get("pay_account");
}
public M setCollAccount(java.lang.String collAccount) {
set("coll_account", collAccount);
return (M)this;
}
public java.lang.String getCollAccount() {
return get("coll_account");
}
public M setPayFee(java.math.BigDecimal payFee) {
set("pay_fee", payFee);
return (M)this;
}
public java.math.BigDecimal getPayFee() {
return get("pay_fee");
}
|
d24e0b2b
王富生
提交修改
|
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
|
public M setActualFee(java.math.BigDecimal actualFee) {
set("actual_fee", actualFee);
return (M)this;
}
public java.math.BigDecimal getActualFee() {
return get("actual_fee");
}
public M setServeFee(java.math.BigDecimal serveFee) {
set("serve_fee", serveFee);
return (M)this;
}
public java.math.BigDecimal getServeFee() {
return get("serve_fee");
}
public M setProfitFee(java.math.BigDecimal profitFee) {
set("profit_fee", profitFee);
return (M)this;
}
public java.math.BigDecimal getProfitFee() {
return get("profit_fee");
}
|
e80df919
atao
init
|
129
130
131
132
133
134
135
136
137
|
public M setPayChannel(java.lang.Integer payChannel) {
set("pay_channel", payChannel);
return (M)this;
}
public java.lang.Integer getPayChannel() {
return get("pay_channel");
}
|
d24e0b2b
王富生
提交修改
|
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
public M setBillBeginTime(java.util.Date billBeginTime) {
set("bill_begin_time", billBeginTime);
return (M)this;
}
public java.util.Date getBillBeginTime() {
return get("bill_begin_time");
}
public M setBillEndTime(java.util.Date billEndTime) {
set("bill_end_time", billEndTime);
return (M)this;
}
public java.util.Date getBillEndTime() {
return get("bill_end_time");
}
public M setRemark(java.lang.String remark) {
set("remark", remark);
|
e80df919
atao
init
|
158
159
160
|
return (M)this;
}
|
d24e0b2b
王富生
提交修改
|
161
162
|
public java.lang.String getRemark() {
return get("remark");
|
e80df919
atao
init
|
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
|
}
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");
}
}
|