BaseCloudsBillDay.java
4 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
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 BaseCloudsBillDay<M extends BaseCloudsBillDay<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 setOrderId(java.lang.String orderId) {
set("order_id", orderId);
return (M)this;
}
public java.lang.String getOrderId() {
return get("order_id");
}
public M setOrderType(java.lang.Integer orderType) {
set("order_type", orderType);
return (M)this;
}
public java.lang.Integer getOrderType() {
return get("order_type");
}
public M setParkId(java.lang.String parkId) {
set("park_id", parkId);
return (M)this;
}
public java.lang.String getParkId() {
return get("park_id");
}
public M setParkName(java.lang.String parkName) {
set("park_name", parkName);
return (M)this;
}
public java.lang.String getParkName() {
return get("park_name");
}
public M setAliTotalFee(java.math.BigDecimal aliTotalFee) {
set("ali_total_fee", aliTotalFee);
return (M)this;
}
public java.math.BigDecimal getAliTotalFee() {
return get("ali_total_fee");
}
public M setAliDealCount(java.lang.Integer aliDealCount) {
set("ali_deal_count", aliDealCount);
return (M)this;
}
public java.lang.Integer getAliDealCount() {
return get("ali_deal_count");
}
public M setWxTotalFee(java.math.BigDecimal wxTotalFee) {
set("wx_total_fee", wxTotalFee);
return (M)this;
}
public java.math.BigDecimal getWxTotalFee() {
return get("wx_total_fee");
}
public M setWxDealCount(java.lang.Integer wxDealCount) {
set("wx_deal_count", wxDealCount);
return (M)this;
}
public java.lang.Integer getWxDealCount() {
return get("wx_deal_count");
}
public M setCashTotalFee(java.math.BigDecimal cashTotalFee) {
set("cash_total_fee", cashTotalFee);
return (M)this;
}
public java.math.BigDecimal getCashTotalFee() {
return get("cash_total_fee");
}
public M setCashDealCount(java.lang.Integer cashDealCount) {
set("cash_deal_count", cashDealCount);
return (M)this;
}
public java.lang.Integer getCashDealCount() {
return get("cash_deal_count");
}
public M setOrderTotalFee(java.math.BigDecimal orderTotalFee) {
set("order_total_fee", orderTotalFee);
return (M)this;
}
public java.math.BigDecimal getOrderTotalFee() {
return get("order_total_fee");
}
public M setOrderDealCount(java.lang.Integer orderDealCount) {
set("order_deal_count", orderDealCount);
return (M)this;
}
public java.lang.Integer getOrderDealCount() {
return get("order_deal_count");
}
public M setBillDayTime(java.util.Date billDayTime) {
set("bill_day_time", billDayTime);
return (M)this;
}
public java.util.Date getBillDayTime() {
return get("bill_day_time");
}
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");
}
}