CalcLineMileage.java
7.04 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
package com.bsth.entity.calc;
import java.util.Date;
import javax.persistence.*;
@Entity
@Table(name = "calc_line_mileage")
public class CalcLineMileage {
/* 主键*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
/* 日期*/
private Date date;
/* 日期字符串*/
private String dateStr;
/* 线路编码*/
private String xl;
/* 线路名称*/
private String xlName;
/* 公司代码*/
private String gsdm;
/* 公司名称*/
private String gsName;
/* 分公司代码*/
private String fgsdm;
/* 分公司名称*/
private String fgsName;
/* 计划总里程*/
private Double jhzlc;
/* 计划营运程*/
private Double jhlc;
/* 计划空驶程*/
private Double jcclc;
/* 实际总里程*/
private Double sjzgl;
/* 计划内里程*/
private Double jhnlc;
/* 计划外里程*/
private Double jhwlc;
/* 计划内进出场空驶*/
private Double jhnjcclc;
/* 计划外进出场空驶*/
private Double jhwjcclc;
/* 计划外进出场空驶_*/
private Double jhwjcclcz;
/* 故障进出场空驶*/
private Double zrwjcclc;
/* 肇事进出场空驶*/
private Double zrwjcclc1;
/* 纠纷进出场空驶*/
private Double zrwjcclc2;
/* 其他进出场空驶*/
private Double zrwjcclcqt;
/* 空放 空驶*/
private Double kfks;
/* 少驶营运里程*/
private Double lbss;
/* 少驶 路阻*/
private Double ssglLz;
/* 少驶 吊慢*/
private Double ssglDm;
/* 少驶 故障*/
private Double ssglGz;
/* 少驶 纠纷*/
private Double ssglJf;
/* 少驶 肇事*/
private Double ssglZs;
/* 少驶 缺人*/
private Double ssglQr;
/* 少驶 缺车*/
private Double ssglQc;
/* 少驶 客稀*/
private Double ssglKx;
/* 少驶 气候*/
private Double ssglQh;
/* 少驶 援外*/
private Double ssglYw;
/* 少驶 路救抛锚*/
private Double ssglLjpm;
/* 少驶 其他*/
private Double ssglOther;
/* 临加营运公里*/
private Double ljyy;
/* 临加进出场空驶*/
private Double ljjcc;
/* 临加空放空驶*/
private Double ljkfks;
/* 备注*/
private String remark;
/* 创建时间*/
private Date createDate;
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 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 Double getJhzlc() {
return jhzlc;
}
public void setJhzlc(Double jhzlc) {
this.jhzlc = jhzlc;
}
public Double getJhlc() {
return jhlc;
}
public void setJhlc(Double jhlc) {
this.jhlc = jhlc;
}
public Double getJcclc() {
return jcclc;
}
public void setJcclc(Double jcclc) {
this.jcclc = jcclc;
}
public Double getSjzgl() {
return sjzgl;
}
public void setSjzgl(Double sjzgl) {
this.sjzgl = sjzgl;
}
public Double getJhnlc() {
return jhnlc;
}
public void setJhnlc(Double jhnlc) {
this.jhnlc = jhnlc;
}
public Double getJhwlc() {
return jhwlc;
}
public void setJhwlc(Double jhwlc) {
this.jhwlc = jhwlc;
}
public Double getJhnjcclc() {
return jhnjcclc;
}
public void setJhnjcclc(Double jhnjcclc) {
this.jhnjcclc = jhnjcclc;
}
public Double getJhwjcclc() {
return jhwjcclc;
}
public void setJhwjcclc(Double jhwjcclc) {
this.jhwjcclc = jhwjcclc;
}
public Double getJhwjcclcz() {
return jhwjcclcz;
}
public void setJhwjcclcz(Double jhwjcclcz) {
this.jhwjcclcz = jhwjcclcz;
}
public Double getZrwjcclc() {
return zrwjcclc;
}
public void setZrwjcclc(Double zrwjcclc) {
this.zrwjcclc = zrwjcclc;
}
public Double getZrwjcclc1() {
return zrwjcclc1;
}
public void setZrwjcclc1(Double zrwjcclc1) {
this.zrwjcclc1 = zrwjcclc1;
}
public Double getZrwjcclc2() {
return zrwjcclc2;
}
public void setZrwjcclc2(Double zrwjcclc2) {
this.zrwjcclc2 = zrwjcclc2;
}
public Double getZrwjcclcqt() {
return zrwjcclcqt;
}
public void setZrwjcclcqt(Double zrwjcclcqt) {
this.zrwjcclcqt = zrwjcclcqt;
}
public Double getKfks() {
return kfks;
}
public void setKfks(Double kfks) {
this.kfks = kfks;
}
public Double getLbss() {
return lbss;
}
public void setLbss(Double lbss) {
this.lbss = lbss;
}
public Double getSsglLz() {
return ssglLz;
}
public void setSsglLz(Double ssglLz) {
this.ssglLz = ssglLz;
}
public Double getSsglDm() {
return ssglDm;
}
public void setSsglDm(Double ssglDm) {
this.ssglDm = ssglDm;
}
public Double getSsglGz() {
return ssglGz;
}
public void setSsglGz(Double ssglGz) {
this.ssglGz = ssglGz;
}
public Double getSsglJf() {
return ssglJf;
}
public void setSsglJf(Double ssglJf) {
this.ssglJf = ssglJf;
}
public Double getSsglZs() {
return ssglZs;
}
public void setSsglZs(Double ssglZs) {
this.ssglZs = ssglZs;
}
public Double getSsglQr() {
return ssglQr;
}
public void setSsglQr(Double ssglQr) {
this.ssglQr = ssglQr;
}
public Double getSsglQc() {
return ssglQc;
}
public void setSsglQc(Double ssglQc) {
this.ssglQc = ssglQc;
}
public Double getSsglKx() {
return ssglKx;
}
public void setSsglKx(Double ssglKx) {
this.ssglKx = ssglKx;
}
public Double getSsglQh() {
return ssglQh;
}
public void setSsglQh(Double ssglQh) {
this.ssglQh = ssglQh;
}
public Double getSsglYw() {
return ssglYw;
}
public void setSsglYw(Double ssglYw) {
this.ssglYw = ssglYw;
}
public Double getSsglLjpm() {
return ssglLjpm;
}
public void setSsglLjpm(Double ssglLjpm) {
this.ssglLjpm = ssglLjpm;
}
public Double getSsglOther() {
return ssglOther;
}
public void setSsglOther(Double ssglOther) {
this.ssglOther = ssglOther;
}
public Double getLjyy() {
return ljyy;
}
public void setLjyy(Double ljyy) {
this.ljyy = ljyy;
}
public Double getLjjcc() {
return ljjcc;
}
public void setLjjcc(Double ljjcc) {
this.ljjcc = ljjcc;
}
public Double getLjkfks() {
return ljkfks;
}
public void setLjkfks(Double ljkfks) {
this.ljkfks = ljkfks;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
}