CalcInvestigateMonth.java
6.13 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
package com.bsth.entity.calc;
import java.util.Date;
import javax.persistence.*;
@Entity
@Table(name = "bsth_c_calc_investigate_month")
public class CalcInvestigateMonth {
/* 主键*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
/* 月(yyyy-MM)*/
private String month;
/* 线路*/
private String xl;
/* 公司编码*/
private String gsbm;
/* 分公司编码*/
private String fgsbm;
/* 线路名称*/
private String xlmc;
/* 权证配车数*/
private String qzpcs;
/* 线路属性*/
private String xlsx;
/* 线路类型*/
private String xllx;
/* 线路长度*/
private String xlcd;
/* 是否挂牌*/
private String sfgp;
/* 是否冷僻线路*/
private String sflpxl;
/* 首末班时间*/
private String smbsj;
/* 调度方式(常规、多样化)*/
private String ddfs;
/* 高峰间隔时间*/
private String gfjgsj;
/* 低谷间隔时间*/
private String dgjgsj;
/* 是否衔接轨交末班*/
private String sfxjgj;
/* 日均里程*/
private String rjlc;
/* 日均班次*/
private String rjbc;
/* 日均人次*/
private String rjrc;
/* 日均单车人次*/
private String rjdcrc;
/* 每班车人次*/
private String mbcrc;
/* 计划总公里*/
private String jhzgl;
/* 实际总公里*/
private String sjzgl;
/* 实际营运里程*/
private String sjyylc;
/* 里程利用率*/
private String lclyl;
/* 百公里人次*/
private String bglrc;
/* 月人次*/
private String yrc;
/* 月营收*/
private String yys;
/* 票价*/
private String pj;
/* 百公里营收*/
private String bglys;
/* 途径轨交站*/
private String tjgjz;
/* 途径三级医院*/
private String tjsjyy;
/* 唯一线*/
private String wyx;
/* 线路走向*/
private String xlzx;
/* 线路站点*/
private String xlzd;
/* 备注*/
private String bz;
/* 创建时间(更新时间)*/
private Date createDate;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getMonth() {
return month;
}
public void setMonth(String month) {
this.month = month;
}
public String getGsbm() {
return gsbm;
}
public void setGsbm(String gsbm) {
this.gsbm = gsbm;
}
public String getFgsbm() {
return fgsbm;
}
public void setFgsbm(String fgsbm) {
this.fgsbm = fgsbm;
}
public String getXl() {
return xl;
}
public void setXl(String xl) {
this.xl = xl;
}
public String getXlmc() {
return xlmc;
}
public void setXlmc(String xlmc) {
this.xlmc = xlmc;
}
public String getQzpcs() {
return qzpcs;
}
public void setQzpcs(String qzpcs) {
this.qzpcs = qzpcs;
}
public String getXlsx() {
return xlsx;
}
public void setXlsx(String xlsx) {
this.xlsx = xlsx;
}
public String getXllx() {
return xllx;
}
public void setXllx(String xllx) {
this.xllx = xllx;
}
public String getXlcd() {
return xlcd;
}
public void setXlcd(String xlcd) {
this.xlcd = xlcd;
}
public String getSfgp() {
return sfgp;
}
public void setSfgp(String sfgp) {
this.sfgp = sfgp;
}
public String getSflpxl() {
return sflpxl;
}
public void setSflpxl(String sflpxl) {
this.sflpxl = sflpxl;
}
public String getSmbsj() {
return smbsj;
}
public void setSmbsj(String smbsj) {
this.smbsj = smbsj;
}
public String getDdfs() {
return ddfs;
}
public void setDdfs(String ddfs) {
this.ddfs = ddfs;
}
public String getGfjgsj() {
return gfjgsj;
}
public void setGfjgsj(String gfjgsj) {
this.gfjgsj = gfjgsj;
}
public String getDgjgsj() {
return dgjgsj;
}
public void setDgjgsj(String dgjgsj) {
this.dgjgsj = dgjgsj;
}
public String getSfxjgj() {
return sfxjgj;
}
public void setSfxjgj(String sfxjgj) {
this.sfxjgj = sfxjgj;
}
public String getRjlc() {
return rjlc;
}
public void setRjlc(String rjlc) {
this.rjlc = rjlc;
}
public String getRjbc() {
return rjbc;
}
public void setRjbc(String rjbc) {
this.rjbc = rjbc;
}
public String getRjrc() {
return rjrc;
}
public void setRjrc(String rjrc) {
this.rjrc = rjrc;
}
public String getRjdcrc() {
return rjdcrc;
}
public void setRjdcrc(String rjdcrc) {
this.rjdcrc = rjdcrc;
}
public String getMbcrc() {
return mbcrc;
}
public void setMbcrc(String mbcrc) {
this.mbcrc = mbcrc;
}
public String getJhzgl() {
return jhzgl;
}
public void setJhzgl(String jhzgl) {
this.jhzgl = jhzgl;
}
public String getSjzgl() {
return sjzgl;
}
public void setSjzgl(String sjzgl) {
this.sjzgl = sjzgl;
}
public String getSjyylc() {
return sjyylc;
}
public void setSjyylc(String sjyylc) {
this.sjyylc = sjyylc;
}
public String getLclyl() {
return lclyl;
}
public void setLclyl(String lclyl) {
this.lclyl = lclyl;
}
public String getBglrc() {
return bglrc;
}
public void setBglrc(String bglrc) {
this.bglrc = bglrc;
}
public String getYrc() {
return yrc;
}
public void setYrc(String yrc) {
this.yrc = yrc;
}
public String getYys() {
return yys;
}
public void setYys(String yys) {
this.yys = yys;
}
public String getPj() {
return pj;
}
public void setPj(String pj) {
this.pj = pj;
}
public String getBglys() {
return bglys;
}
public void setBglys(String bglys) {
this.bglys = bglys;
}
public String getTjgjz() {
return tjgjz;
}
public void setTjgjz(String tjgjz) {
this.tjgjz = tjgjz;
}
public String getTjsjyy() {
return tjsjyy;
}
public void setTjsjyy(String tjsjyy) {
this.tjsjyy = tjsjyy;
}
public String getWyx() {
return wyx;
}
public void setWyx(String wyx) {
this.wyx = wyx;
}
public String getXlzx() {
return xlzx;
}
public void setXlzx(String xlzx) {
this.xlzx = xlzx;
}
public String getXlzd() {
return xlzd;
}
public void setXlzd(String xlzd) {
this.xlzd = xlzd;
}
public String getBz() {
return bz;
}
public void setBz(String bz) {
this.bz = bz;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
}