BillCheckBean.java
2.9 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
package com.agent.billcheck;
/**
* Created by cohesion on 2017/4/17.
*
* 账单核审
*/
public class BillCheckBean {
private Integer fid;
private String code;
private String type;
private String chgseq;
private String eiflag;
private String diflag;
private String bizope;
private String cuscode;
private String cusnm;
private String paymode;
private String cusrnm;
private String cdate;
private String feecd;
private String cfeewt;
private String feewt;
private String fee;
private String rate;
private String feenm;
private String payCostFid;
private String station;
public void setFid(Integer fid) {
this.fid = fid;
}
public int getFid() {
return this.fid;
}
public void setCode(String code) {
this.code = code;
}
public String getCode() {
return this.code;
}
public void setType(String type) {
this.type = type;
}
public String getType() {
return this.type;
}
public void setChgseq(String chgseq) {
this.chgseq = chgseq;
}
public String getChgseq() {
return this.chgseq;
}
public void setEiflag(String eiflag) {
this.eiflag = eiflag;
}
public String getEiflag() {
return this.eiflag;
}
public void setDiflag(String diflag) {
this.diflag = diflag;
}
public String getDiflag() {
return this.diflag;
}
public void setBizope(String bizope) {
this.bizope = bizope;
}
public String getBizope() {
return this.bizope;
}
public void setCuscode(String cuscode) {
this.cuscode = cuscode;
}
public String getCuscode() {
return this.cuscode;
}
public void setCusnm(String cusnm) {
this.cusnm = cusnm;
}
public String getCusnm() {
return this.cusnm;
}
public void setPaymode(String paymode) {
this.paymode = paymode;
}
public String getPaymode() {
return this.paymode;
}
public void setCusrnm(String cusrnm) {
this.cusrnm = cusrnm;
}
public String getCusrnm() {
return this.cusrnm;
}
public void setCdate(String cdate) {
this.cdate = cdate;
}
public String getCdate() {
return this.cdate;
}
public String getFeecd() {
return feecd;
}
public void setFeecd(String feecd) {
this.feecd = feecd;
}
public String getCfeewt() {
return cfeewt;
}
public void setCfeewt(String cfeewt) {
this.cfeewt = cfeewt;
}
public String getFeewt() {
return feewt;
}
public void setFeewt(String feewt) {
this.feewt = feewt;
}
public String getFee() {
return fee;
}
public void setFee(String fee) {
this.fee = fee;
}
public String getRate() {
return rate;
}
public void setRate(String rate) {
this.rate = rate;
}
public String getFeenm() {
return feenm;
}
public void setFeenm(String feenm) {
this.feenm = feenm;
}
public String getPayCostFid() {
return payCostFid;
}
public void setPayCostFid(String payCostFid) {
this.payCostFid = payCostFid;
}
public String getStation() {
return station;
}
public void setStation(String station) {
this.station = station;
}
}