CalcStatistics.java
7.89 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
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;
import javax.persistence.Transient;
@Entity
@Table(name = "calc_statistics")
public class CalcStatistics {
/* 主键*/
@Id
@GeneratedValue
private Long id;
/* 日期*/
private Date date;
/* 日期字符串*/
private String dateStr;
/* 线路编码*/
private String xl;
/* 线路名称*/
private String xlName;
/* 公司代码*/
private String gsdm;
/* 分公司代码*/
private String fgsdm;
/* 计划总公里*/
private Double jhzlc;
/* 计划营运公里*/
private Double jhyylc;
/* 计划空驶公里*/
private Double jhkslc;
/* 实际总公里*/
private Double sjzlc;
/* 实际营运公里*/
private Double sjyylc;
/* 实际空驶公里*/
private Double sjkslc;
/* 少驶公里*/
private Double sslc;
/* 少驶班次*/
private int ssbc;
/* 路阻公里*/
private Double lzlc;
/* 吊慢公里*/
private Double dmlc;
/* 故障公里*/
private Double gzlc;
/* 纠纷公里*/
private Double jflc;
/* 肇事公里*/
private Double zslc;
/* 缺人公里*/
private Double qrlc;
/* 缺车公里*/
private Double qclc;
/* 客稀公里*/
private Double kxlc;
/* 气候公里*/
private Double qhlc;
/* 援外公里*/
private Double ywlc;
/* 其他公里*/
private Double qtlc;
/* 临加公里*/
private Double ljlc;
/* 临加空驶公里*/
private Double ljkslc;
/* 计划班次*/
private int jhbcq;
/* 计划班次(早高峰)*/
private int jhbcz;
/* 计划班次(晚高峰)*/
private int jhbcw;
/* 实际班次*/
private int sjbcq;
/* 实际班次(早高峰)*/
private int sjbcz;
/* 实际班次(晚高峰)*/
private int sjbcw;
/* 临加班次*/
private int ljbcq;
/* 临加班次(早高峰)*/
private int ljbcz;
/* 临加班次(晚高峰)*/
private int ljbcw;
/* 放站班次*/
private int fzbcq;
/* 放站班次(早高峰)*/
private int fzbcz;
/* 放站班次(晚高峰)*/
private int fzbcw;
/* 调头班次*/
private int dtbcq;
/* 调头班次(早高峰)*/
private int dtbcz;
/* 调头班次(晚高峰)*/
private int dtbcw;
/* 大间隔次数*/
private int djgq;
/* 大间隔次数(早高峰)*/
private int djgz;
/* 大间隔次数(晚高峰)*/
private int djgw;
/* 最大大间隔时间*/
private int djgsj;
/* 备注*/
private String remark;
/*分公司名字*/
@Transient
private String fgsName;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public String getDateStr() {
return dateStr;
}
public void setDateStr(String dateStr) {
this.dateStr = dateStr;
}
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 getGsdm() {
return gsdm;
}
public void setGsdm(String gsdm) {
this.gsdm = gsdm;
}
public String getFgsdm() {
return fgsdm;
}
public void setFgsdm(String fgsdm) {
this.fgsdm = fgsdm;
}
public Double getJhzlc() {
return jhzlc;
}
public void setJhzlc(Double jhzlc) {
this.jhzlc = jhzlc;
}
public Double getJhyylc() {
return jhyylc;
}
public void setJhyylc(Double jhyylc) {
this.jhyylc = jhyylc;
}
public Double getJhkslc() {
return jhkslc;
}
public void setJhkslc(Double jhkslc) {
this.jhkslc = jhkslc;
}
public Double getSjzlc() {
return sjzlc;
}
public void setSjzlc(Double sjzlc) {
this.sjzlc = sjzlc;
}
public Double getSjyylc() {
return sjyylc;
}
public void setSjyylc(Double sjyylc) {
this.sjyylc = sjyylc;
}
public Double getSjkslc() {
return sjkslc;
}
public void setSjkslc(Double sjkslc) {
this.sjkslc = sjkslc;
}
public Double getSslc() {
return sslc;
}
public void setSslc(Double sslc) {
this.sslc = sslc;
}
public int getSsbc() {
return ssbc;
}
public void setSsbc(int ssbc) {
this.ssbc = ssbc;
}
public Double getLzlc() {
return lzlc;
}
public void setLzlc(Double lzlc) {
this.lzlc = lzlc;
}
public Double getDmlc() {
return dmlc;
}
public void setDmlc(Double dmlc) {
this.dmlc = dmlc;
}
public Double getGzlc() {
return gzlc;
}
public void setGzlc(Double gzlc) {
this.gzlc = gzlc;
}
public Double getJflc() {
return jflc;
}
public void setJflc(Double jflc) {
this.jflc = jflc;
}
public Double getZslc() {
return zslc;
}
public void setZslc(Double zslc) {
this.zslc = zslc;
}
public Double getQrlc() {
return qrlc;
}
public void setQrlc(Double qrlc) {
this.qrlc = qrlc;
}
public Double getQclc() {
return qclc;
}
public void setQclc(Double qclc) {
this.qclc = qclc;
}
public Double getKxlc() {
return kxlc;
}
public void setKxlc(Double kxlc) {
this.kxlc = kxlc;
}
public Double getQhlc() {
return qhlc;
}
public void setQhlc(Double qhlc) {
this.qhlc = qhlc;
}
public Double getYwlc() {
return ywlc;
}
public void setYwlc(Double ywlc) {
this.ywlc = ywlc;
}
public Double getQtlc() {
return qtlc;
}
public void setQtlc(Double qtlc) {
this.qtlc = qtlc;
}
public Double getLjlc() {
return ljlc;
}
public void setLjlc(Double ljlc) {
this.ljlc = ljlc;
}
public Double getLjkslc() {
return ljkslc;
}
public void setLjkslc(Double ljkslc) {
this.ljkslc = ljkslc;
}
public int getJhbcq() {
return jhbcq;
}
public void setJhbcq(int jhbcq) {
this.jhbcq = jhbcq;
}
public int getJhbcz() {
return jhbcz;
}
public void setJhbcz(int jhbcz) {
this.jhbcz = jhbcz;
}
public int getJhbcw() {
return jhbcw;
}
public void setJhbcw(int jhbcw) {
this.jhbcw = jhbcw;
}
public int getSjbcq() {
return sjbcq;
}
public void setSjbcq(int sjbcq) {
this.sjbcq = sjbcq;
}
public int getSjbcz() {
return sjbcz;
}
public void setSjbcz(int sjbcz) {
this.sjbcz = sjbcz;
}
public int getSjbcw() {
return sjbcw;
}
public void setSjbcw(int sjbcw) {
this.sjbcw = sjbcw;
}
public int getLjbcq() {
return ljbcq;
}
public void setLjbcq(int ljbcq) {
this.ljbcq = ljbcq;
}
public int getLjbcz() {
return ljbcz;
}
public void setLjbcz(int ljbcz) {
this.ljbcz = ljbcz;
}
public int getLjbcw() {
return ljbcw;
}
public void setLjbcw(int ljbcw) {
this.ljbcw = ljbcw;
}
public int getFzbcq() {
return fzbcq;
}
public void setFzbcq(int fzbcq) {
this.fzbcq = fzbcq;
}
public int getFzbcz() {
return fzbcz;
}
public void setFzbcz(int fzbcz) {
this.fzbcz = fzbcz;
}
public int getFzbcw() {
return fzbcw;
}
public void setFzbcw(int fzbcw) {
this.fzbcw = fzbcw;
}
public int getDtbcq() {
return dtbcq;
}
public void setDtbcq(int dtbcq) {
this.dtbcq = dtbcq;
}
public int getDtbcz() {
return dtbcz;
}
public void setDtbcz(int dtbcz) {
this.dtbcz = dtbcz;
}
public int getDtbcw() {
return dtbcw;
}
public void setDtbcw(int dtbcw) {
this.dtbcw = dtbcw;
}
public int getDjgq() {
return djgq;
}
public void setDjgq(int djgq) {
this.djgq = djgq;
}
public int getDjgz() {
return djgz;
}
public void setDjgz(int djgz) {
this.djgz = djgz;
}
public int getDjgw() {
return djgw;
}
public void setDjgw(int djgw) {
this.djgw = djgw;
}
public int getDjgsj() {
return djgsj;
}
public void setDjgsj(int djgsj) {
this.djgsj = djgsj;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getFgsName() {
return fgsName;
}
public void setFgsName(String fgsName) {
this.fgsName = fgsName;
}
}