CalcWaybill.java
8.43 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
package com.bsth.entity.calc;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "calc_waybill")
public class CalcWaybill {
/* 主键*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
/* 公司代码*/
private String gsdm;
/* 公司名称*/
private String gsname;
/* 分公司代码*/
private String fgsdm;
/* 分公司名称*/
private String fgsname;
/* 日期*/
private Date rq;
/* 日期字符串*/
private String rqStr;
/* 线路编码*/
private String xl;
/* 线路名称*/
private String xlName;
/* 车辆自编号*/
private String cl;
/* 路牌名字*/
private String lp;
/* 驾驶员工号*/
private String jGh;
/* 驾驶员名字*/
private String jName;
/* 售票员工号*/
private String sGh;
/* 售票员名字*/
private String sName;
/* 计划营运班次*/
private int jhyybc;
/* 计划早高峰营运班次*/
private int jhyybczgf;
/* 计划晚高峰营运班次*/
private int jhyybcwgf;
/* 计划非营运班次*/
private int jhfyybc;
/* 计划营运里程*/
private Double jhyylc;
/* 计划非营运里程*/
private Double jhfyylc;
/* 实际营运班次*/
private int sjyybc;
/* 实际早高峰营运班次*/
private int sjyybczgf;
/* 实际晚高峰营运班次*/
private int sjyybcwgf;
/* 实际非营运班次*/
private int sjfyybc;
/* 实际营运里程*/
private Double sjyylc;
/* 实际非营运里程*/
private Double sjfyylc;
/* 临加班次*/
private int ljbc;
/* 临加早高峰班次*/
private int ljbczgf;
/* 临加晚高峰班次*/
private int ljbcwgf;
/* 临加营运里程*/
private Double ljyylc;
/* 临加非营运里程*/
private Double ljfyylc;
/* 烂班班次*/
private int lbbc;
/* 烂班里程*/
private Double lblc;
/* 路阻*/
private Double lblcLz;
/* 吊慢*/
private Double lblcDm;
/* 故障*/
private Double lblcGz;
/* 纠纷*/
private Double lblcJf;
/* 肇事*/
private Double lblcZs;
/* 缺人*/
private Double lblcQr;
/* 缺车*/
private Double lblcQc;
/* 客稀*/
private Double lblcKx;
/* 气候*/
private Double lblcQh;
/* 援外*/
private Double lblcYw;
/* 其他*/
private Double lblcQt;
/* 放站班次*/
private int fzbc;
/* 放站早高峰班次*/
private int fzbczgf;
/* 放站晚高峰班次*/
private int fzbcwgf;
/* 掉头班次*/
private int dtbc;
/* 掉头早高峰班次*/
private int dtbczgf;
/* 掉头晚高峰班次*/
private int dtbcwgf;
/* 创建时间*/
private Date createTime;
/* 修改时间*/
private Date updateTime;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getGsdm() {
return gsdm;
}
public void setGsdm(String gsdm) {
this.gsdm = gsdm;
}
public String getGsname() {
return gsname;
}
public void setGsname(String gsname) {
this.gsname = gsname;
}
public String getFgsdm() {
return fgsdm;
}
public void setFgsdm(String fgsdm) {
this.fgsdm = fgsdm;
}
public String getFgsname() {
return fgsname;
}
public void setFgsname(String fgsname) {
this.fgsname = fgsname;
}
public Date getRq() {
return rq;
}
public void setRq(Date rq) {
this.rq = rq;
}
public String getRqStr() {
return rqStr;
}
public void setRqStr(String rqStr) {
this.rqStr = rqStr;
}
public String getXl() {
return xl;
}
public void setXl(String xl) {
this.xl = xl;
}
public String getXlName() {
return xlName;
}
public void setXlName(String xlName) {
this.xlName = xlName;
}
public String getCl() {
return cl;
}
public void setCl(String cl) {
this.cl = cl;
}
public String getLp() {
return lp;
}
public void setLp(String lp) {
this.lp = lp;
}
public String getjGh() {
return jGh;
}
public void setjGh(String jGh) {
this.jGh = jGh;
}
public String getjName() {
return jName;
}
public void setjName(String jName) {
this.jName = jName;
}
public String getsGh() {
return sGh;
}
public void setsGh(String sGh) {
this.sGh = sGh;
}
public String getsName() {
return sName;
}
public void setsName(String sName) {
this.sName = sName;
}
public int getJhyybc() {
return jhyybc;
}
public void setJhyybc(int jhyybc) {
this.jhyybc = jhyybc;
}
public int getJhyybczgf() {
return jhyybczgf;
}
public void setJhyybczgf(int jhyybczgf) {
this.jhyybczgf = jhyybczgf;
}
public int getJhyybcwgf() {
return jhyybcwgf;
}
public void setJhyybcwgf(int jhyybcwgf) {
this.jhyybcwgf = jhyybcwgf;
}
public int getJhfyybc() {
return jhfyybc;
}
public void setJhfyybc(int jhfyybc) {
this.jhfyybc = jhfyybc;
}
public Double getJhyylc() {
return jhyylc;
}
public void setJhyylc(Double jhyylc) {
this.jhyylc = jhyylc;
}
public Double getJhfyylc() {
return jhfyylc;
}
public void setJhfyylc(Double jhfyylc) {
this.jhfyylc = jhfyylc;
}
public int getSjyybc() {
return sjyybc;
}
public void setSjyybc(int sjyybc) {
this.sjyybc = sjyybc;
}
public int getSjyybczgf() {
return sjyybczgf;
}
public void setSjyybczgf(int sjyybczgf) {
this.sjyybczgf = sjyybczgf;
}
public int getSjyybcwgf() {
return sjyybcwgf;
}
public void setSjyybcwgf(int sjyybcwgf) {
this.sjyybcwgf = sjyybcwgf;
}
public int getSjfyybc() {
return sjfyybc;
}
public void setSjfyybc(int sjfyybc) {
this.sjfyybc = sjfyybc;
}
public Double getSjyylc() {
return sjyylc;
}
public void setSjyylc(Double sjyylc) {
this.sjyylc = sjyylc;
}
public Double getSjfyylc() {
return sjfyylc;
}
public void setSjfyylc(Double sjfyylc) {
this.sjfyylc = sjfyylc;
}
public int getLjbc() {
return ljbc;
}
public void setLjbc(int ljbc) {
this.ljbc = ljbc;
}
public int getLjbczgf() {
return ljbczgf;
}
public void setLjbczgf(int ljbczgf) {
this.ljbczgf = ljbczgf;
}
public int getLjbcwgf() {
return ljbcwgf;
}
public void setLjbcwgf(int ljbcwgf) {
this.ljbcwgf = ljbcwgf;
}
public Double getLjyylc() {
return ljyylc;
}
public void setLjyylc(Double ljyylc) {
this.ljyylc = ljyylc;
}
public Double getLjfyylc() {
return ljfyylc;
}
public void setLjfyylc(Double ljfyylc) {
this.ljfyylc = ljfyylc;
}
public int getLbbc() {
return lbbc;
}
public void setLbbc(int lbbc) {
this.lbbc = lbbc;
}
public Double getLblc() {
return lblc;
}
public void setLblc(Double lblc) {
this.lblc = lblc;
}
public Double getLblcLz() {
return lblcLz;
}
public void setLblcLz(Double lblcLz) {
this.lblcLz = lblcLz;
}
public Double getLblcDm() {
return lblcDm;
}
public void setLblcDm(Double lblcDm) {
this.lblcDm = lblcDm;
}
public Double getLblcGz() {
return lblcGz;
}
public void setLblcGz(Double lblcGz) {
this.lblcGz = lblcGz;
}
public Double getLblcJf() {
return lblcJf;
}
public void setLblcJf(Double lblcJf) {
this.lblcJf = lblcJf;
}
public Double getLblcZs() {
return lblcZs;
}
public void setLblcZs(Double lblcZs) {
this.lblcZs = lblcZs;
}
public Double getLblcQr() {
return lblcQr;
}
public void setLblcQr(Double lblcQr) {
this.lblcQr = lblcQr;
}
public Double getLblcQc() {
return lblcQc;
}
public void setLblcQc(Double lblcQc) {
this.lblcQc = lblcQc;
}
public Double getLblcKx() {
return lblcKx;
}
public void setLblcKx(Double lblcKx) {
this.lblcKx = lblcKx;
}
public Double getLblcQh() {
return lblcQh;
}
public void setLblcQh(Double lblcQh) {
this.lblcQh = lblcQh;
}
public Double getLblcYw() {
return lblcYw;
}
public void setLblcYw(Double lblcYw) {
this.lblcYw = lblcYw;
}
public Double getLblcQt() {
return lblcQt;
}
public void setLblcQt(Double lblcQt) {
this.lblcQt = lblcQt;
}
public int getFzbc() {
return fzbc;
}
public void setFzbc(int fzbc) {
this.fzbc = fzbc;
}
public int getFzbczgf() {
return fzbczgf;
}
public void setFzbczgf(int fzbczgf) {
this.fzbczgf = fzbczgf;
}
public int getFzbcwgf() {
return fzbcwgf;
}
public void setFzbcwgf(int fzbcwgf) {
this.fzbcwgf = fzbcwgf;
}
public int getDtbc() {
return dtbc;
}
public void setDtbc(int dtbc) {
this.dtbc = dtbc;
}
public int getDtbczgf() {
return dtbczgf;
}
public void setDtbczgf(int dtbczgf) {
this.dtbczgf = dtbczgf;
}
public int getDtbcwgf() {
return dtbcwgf;
}
public void setDtbcwgf(int dtbcwgf) {
this.dtbcwgf = dtbcwgf;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}