Commit 66b2111f20b80395a6543fc7cb3512414f5ea176

Authored by 娄高锋
1 parent 80c3369b

20250212浦东公交线路调查表新增字段:起讫站,接口同步更新。

src/main/java/com/bsth/entity/CalcInvestigateMonth.java
1   -package com.bsth.entity;
2   -
3   -import java.util.Date;
4   -
5   -import javax.persistence.*;
6   -
7   -@Entity
8   -@Table(name = "bsth_c_calc_investigate_month")
9   -public class CalcInvestigateMonth {
10   - /* 主键*/
11   - @Id
12   - @GeneratedValue(strategy = GenerationType.IDENTITY)
13   - private Long id;
14   - /* 月(yyyy-MM)*/
15   - private String month;
16   - /* 线路*/
17   - private String xl;
18   - /* 公司编码*/
19   - private String gsbm;
20   - /* 分公司编码*/
21   - private String fgsbm;
22   - /* 线路名称*/
23   - private String xlmc;
24   - /* 权证配车数*/
25   - private String qzpcs;
26   - /* 线路属性*/
27   - private String xlsx;
28   - /* 线路类型*/
29   - private String xllx;
30   - /* 线路长度*/
31   - private String xlcd;
32   - /* 是否挂牌*/
33   - private String sfgp;
34   - /* 是否冷僻线路*/
35   - private String sflpxl;
36   - /* 首末班时间*/
37   - private String smbsj;
38   - /* 调度方式(常规、多样化)*/
39   - private String ddfs;
40   - /* 高峰间隔时间*/
41   - private String gfjgsj;
42   - /* 低谷间隔时间*/
43   - private String dgjgsj;
44   - /* 是否衔接轨交末班*/
45   - private String sfxjgj;
46   - /* 日均里程*/
47   - private String rjlc;
48   - /* 日均班次*/
49   - private String rjbc;
50   - /* 日均人次*/
51   - private String rjrc;
52   - /* 日均单车人次*/
53   - private String rjdcrc;
54   - /* 每班车人次*/
55   - private String mbcrc;
56   - /* 计划总公里*/
57   - private String jhzgl;
58   - /* 实际总公里*/
59   - private String sjzgl;
60   - /* 实际营运里程*/
61   - private String sjyylc;
62   - /* 里程利用率*/
63   - private String lclyl;
64   - /* 百公里人次*/
65   - private String bglrc;
66   - /* 月人次*/
67   - private String yrc;
68   - /* 月营收*/
69   - private String yys;
70   - /* 票价*/
71   - private String pj;
72   - /* 百公里营收*/
73   - private String bglys;
74   - /* 途径轨交站*/
75   - private String tjgjz;
76   - /* 途径三级医院*/
77   - private String tjsjyy;
78   - /* 唯一线*/
79   - private String wyx;
80   - /* 线路走向*/
81   - private String xlzx;
82   - /* 线路站点*/
83   - private String xlzd;
84   - /* 备注*/
85   - private String bz;
86   - /* 创建时间(更新时间)*/
87   - private Date createDate;
88   -
89   - public Long getId() {
90   - return id;
91   - }
92   - public void setId(Long id) {
93   - this.id = id;
94   - }
95   - public String getMonth() {
96   - return month;
97   - }
98   - public void setMonth(String month) {
99   - this.month = month;
100   - }
101   - public String getGsbm() {
102   - return gsbm;
103   - }
104   - public void setGsbm(String gsbm) {
105   - this.gsbm = gsbm;
106   - }
107   - public String getFgsbm() {
108   - return fgsbm;
109   - }
110   - public void setFgsbm(String fgsbm) {
111   - this.fgsbm = fgsbm;
112   - }
113   - public String getXl() {
114   - return xl;
115   - }
116   - public void setXl(String xl) {
117   - this.xl = xl;
118   - }
119   - public String getXlmc() {
120   - return xlmc;
121   - }
122   - public void setXlmc(String xlmc) {
123   - this.xlmc = xlmc;
124   - }
125   - public String getQzpcs() {
126   - return qzpcs;
127   - }
128   - public void setQzpcs(String qzpcs) {
129   - this.qzpcs = qzpcs;
130   - }
131   - public String getXlsx() {
132   - return xlsx;
133   - }
134   - public void setXlsx(String xlsx) {
135   - this.xlsx = xlsx;
136   - }
137   - public String getXllx() {
138   - return xllx;
139   - }
140   - public void setXllx(String xllx) {
141   - this.xllx = xllx;
142   - }
143   - public String getXlcd() {
144   - return xlcd;
145   - }
146   - public void setXlcd(String xlcd) {
147   - this.xlcd = xlcd;
148   - }
149   - public String getSfgp() {
150   - return sfgp;
151   - }
152   - public void setSfgp(String sfgp) {
153   - this.sfgp = sfgp;
154   - }
155   - public String getSflpxl() {
156   - return sflpxl;
157   - }
158   - public void setSflpxl(String sflpxl) {
159   - this.sflpxl = sflpxl;
160   - }
161   - public String getSmbsj() {
162   - return smbsj;
163   - }
164   - public void setSmbsj(String smbsj) {
165   - this.smbsj = smbsj;
166   - }
167   - public String getDdfs() {
168   - return ddfs;
169   - }
170   - public void setDdfs(String ddfs) {
171   - this.ddfs = ddfs;
172   - }
173   - public String getGfjgsj() {
174   - return gfjgsj;
175   - }
176   - public void setGfjgsj(String gfjgsj) {
177   - this.gfjgsj = gfjgsj;
178   - }
179   - public String getDgjgsj() {
180   - return dgjgsj;
181   - }
182   - public void setDgjgsj(String dgjgsj) {
183   - this.dgjgsj = dgjgsj;
184   - }
185   - public String getSfxjgj() {
186   - return sfxjgj;
187   - }
188   - public void setSfxjgj(String sfxjgj) {
189   - this.sfxjgj = sfxjgj;
190   - }
191   - public String getRjlc() {
192   - return rjlc;
193   - }
194   - public void setRjlc(String rjlc) {
195   - this.rjlc = rjlc;
196   - }
197   - public String getRjbc() {
198   - return rjbc;
199   - }
200   - public void setRjbc(String rjbc) {
201   - this.rjbc = rjbc;
202   - }
203   - public String getRjrc() {
204   - return rjrc;
205   - }
206   - public void setRjrc(String rjrc) {
207   - this.rjrc = rjrc;
208   - }
209   - public String getRjdcrc() {
210   - return rjdcrc;
211   - }
212   - public void setRjdcrc(String rjdcrc) {
213   - this.rjdcrc = rjdcrc;
214   - }
215   - public String getMbcrc() {
216   - return mbcrc;
217   - }
218   - public void setMbcrc(String mbcrc) {
219   - this.mbcrc = mbcrc;
220   - }
221   - public String getJhzgl() {
222   - return jhzgl;
223   - }
224   - public void setJhzgl(String jhzgl) {
225   - this.jhzgl = jhzgl;
226   - }
227   - public String getSjzgl() {
228   - return sjzgl;
229   - }
230   - public void setSjzgl(String sjzgl) {
231   - this.sjzgl = sjzgl;
232   - }
233   - public String getSjyylc() {
234   - return sjyylc;
235   - }
236   - public void setSjyylc(String sjyylc) {
237   - this.sjyylc = sjyylc;
238   - }
239   - public String getLclyl() {
240   - return lclyl;
241   - }
242   - public void setLclyl(String lclyl) {
243   - this.lclyl = lclyl;
244   - }
245   - public String getBglrc() {
246   - return bglrc;
247   - }
248   - public void setBglrc(String bglrc) {
249   - this.bglrc = bglrc;
250   - }
251   - public String getYrc() {
252   - return yrc;
253   - }
254   - public void setYrc(String yrc) {
255   - this.yrc = yrc;
256   - }
257   - public String getYys() {
258   - return yys;
259   - }
260   - public void setYys(String yys) {
261   - this.yys = yys;
262   - }
263   - public String getPj() {
264   - return pj;
265   - }
266   - public void setPj(String pj) {
267   - this.pj = pj;
268   - }
269   - public String getBglys() {
270   - return bglys;
271   - }
272   - public void setBglys(String bglys) {
273   - this.bglys = bglys;
274   - }
275   - public String getTjgjz() {
276   - return tjgjz;
277   - }
278   - public void setTjgjz(String tjgjz) {
279   - this.tjgjz = tjgjz;
280   - }
281   - public String getTjsjyy() {
282   - return tjsjyy;
283   - }
284   - public void setTjsjyy(String tjsjyy) {
285   - this.tjsjyy = tjsjyy;
286   - }
287   - public String getWyx() {
288   - return wyx;
289   - }
290   - public void setWyx(String wyx) {
291   - this.wyx = wyx;
292   - }
293   - public String getXlzx() {
294   - return xlzx;
295   - }
296   - public void setXlzx(String xlzx) {
297   - this.xlzx = xlzx;
298   - }
299   - public String getXlzd() {
300   - return xlzd;
301   - }
302   - public void setXlzd(String xlzd) {
303   - this.xlzd = xlzd;
304   - }
305   - public String getBz() {
306   - return bz;
307   - }
308   - public void setBz(String bz) {
309   - this.bz = bz;
310   - }
311   - public Date getCreateDate() {
312   - return createDate;
313   - }
314   - public void setCreateDate(Date createDate) {
315   - this.createDate = createDate;
316   - }
317   -
318   -}
  1 +package com.bsth.entity;
  2 +
  3 +import java.util.Date;
  4 +
  5 +import javax.persistence.*;
  6 +
  7 +@Entity
  8 +@Table(name = "bsth_c_calc_investigate_month")
  9 +public class CalcInvestigateMonth {
  10 + /* 主键*/
  11 + @Id
  12 + @GeneratedValue(strategy = GenerationType.IDENTITY)
  13 + private Long id;
  14 + /* 月(yyyy-MM)*/
  15 + private String month;
  16 + /* 线路*/
  17 + private String xl;
  18 + /* 公司编码*/
  19 + private String gsbm;
  20 + /* 分公司编码*/
  21 + private String fgsbm;
  22 + /* 线路名称*/
  23 + private String xlmc;
  24 + /* 权证配车数*/
  25 + private String qzpcs;
  26 + /* 线路属性*/
  27 + private String xlsx;
  28 + /* 线路类型*/
  29 + private String xllx;
  30 + /* 线路长度*/
  31 + private String xlcd;
  32 + /* 是否挂牌*/
  33 + private String sfgp;
  34 + /* 是否冷僻线路*/
  35 + private String sflpxl;
  36 + /* 起讫站(20250212新增字段)*/
  37 + private String qqz;
  38 + /* 首末班时间*/
  39 + private String smbsj;
  40 + /* 调度方式(常规、多样化)*/
  41 + private String ddfs;
  42 + /* 高峰间隔时间*/
  43 + private String gfjgsj;
  44 + /* 低谷间隔时间*/
  45 + private String dgjgsj;
  46 + /* 是否衔接轨交末班*/
  47 + private String sfxjgj;
  48 + /* 日均里程*/
  49 + private String rjlc;
  50 + /* 日均班次*/
  51 + private String rjbc;
  52 + /* 日均人次*/
  53 + private String rjrc;
  54 + /* 日均单车人次*/
  55 + private String rjdcrc;
  56 + /* 每班车人次*/
  57 + private String mbcrc;
  58 + /* 计划总公里*/
  59 + private String jhzgl;
  60 + /* 实际总公里*/
  61 + private String sjzgl;
  62 + /* 实际营运里程*/
  63 + private String sjyylc;
  64 + /* 里程利用率*/
  65 + private String lclyl;
  66 + /* 百公里人次*/
  67 + private String bglrc;
  68 + /* 月人次*/
  69 + private String yrc;
  70 + /* 月营收*/
  71 + private String yys;
  72 + /* 票价*/
  73 + private String pj;
  74 + /* 百公里营收*/
  75 + private String bglys;
  76 + /* 途径轨交站*/
  77 + private String tjgjz;
  78 + /* 途径三级医院*/
  79 + private String tjsjyy;
  80 + /* 唯一线*/
  81 + private String wyx;
  82 + /* 线路走向*/
  83 + private String xlzx;
  84 + /* 线路站点*/
  85 + private String xlzd;
  86 + /* 备注*/
  87 + private String bz;
  88 + /* 创建时间(更新时间)*/
  89 + private Date createDate;
  90 +
  91 + public Long getId() {
  92 + return id;
  93 + }
  94 + public void setId(Long id) {
  95 + this.id = id;
  96 + }
  97 + public String getMonth() {
  98 + return month;
  99 + }
  100 + public void setMonth(String month) {
  101 + this.month = month;
  102 + }
  103 + public String getGsbm() {
  104 + return gsbm;
  105 + }
  106 + public void setGsbm(String gsbm) {
  107 + this.gsbm = gsbm;
  108 + }
  109 + public String getFgsbm() {
  110 + return fgsbm;
  111 + }
  112 + public void setFgsbm(String fgsbm) {
  113 + this.fgsbm = fgsbm;
  114 + }
  115 + public String getXl() {
  116 + return xl;
  117 + }
  118 + public void setXl(String xl) {
  119 + this.xl = xl;
  120 + }
  121 + public String getXlmc() {
  122 + return xlmc;
  123 + }
  124 + public void setXlmc(String xlmc) {
  125 + this.xlmc = xlmc;
  126 + }
  127 + public String getQzpcs() {
  128 + return qzpcs;
  129 + }
  130 + public void setQzpcs(String qzpcs) {
  131 + this.qzpcs = qzpcs;
  132 + }
  133 + public String getXlsx() {
  134 + return xlsx;
  135 + }
  136 + public void setXlsx(String xlsx) {
  137 + this.xlsx = xlsx;
  138 + }
  139 + public String getXllx() {
  140 + return xllx;
  141 + }
  142 + public void setXllx(String xllx) {
  143 + this.xllx = xllx;
  144 + }
  145 + public String getXlcd() {
  146 + return xlcd;
  147 + }
  148 + public void setXlcd(String xlcd) {
  149 + this.xlcd = xlcd;
  150 + }
  151 + public String getSfgp() {
  152 + return sfgp;
  153 + }
  154 + public void setSfgp(String sfgp) {
  155 + this.sfgp = sfgp;
  156 + }
  157 + public String getSflpxl() {
  158 + return sflpxl;
  159 + }
  160 + public void setSflpxl(String sflpxl) {
  161 + this.sflpxl = sflpxl;
  162 + }
  163 + public String getQqz() {
  164 + return qqz;
  165 + }
  166 + public void setQqz(String qqz) {
  167 + this.qqz = qqz;
  168 + }
  169 + public String getSmbsj() {
  170 + return smbsj;
  171 + }
  172 + public void setSmbsj(String smbsj) {
  173 + this.smbsj = smbsj;
  174 + }
  175 + public String getDdfs() {
  176 + return ddfs;
  177 + }
  178 + public void setDdfs(String ddfs) {
  179 + this.ddfs = ddfs;
  180 + }
  181 + public String getGfjgsj() {
  182 + return gfjgsj;
  183 + }
  184 + public void setGfjgsj(String gfjgsj) {
  185 + this.gfjgsj = gfjgsj;
  186 + }
  187 + public String getDgjgsj() {
  188 + return dgjgsj;
  189 + }
  190 + public void setDgjgsj(String dgjgsj) {
  191 + this.dgjgsj = dgjgsj;
  192 + }
  193 + public String getSfxjgj() {
  194 + return sfxjgj;
  195 + }
  196 + public void setSfxjgj(String sfxjgj) {
  197 + this.sfxjgj = sfxjgj;
  198 + }
  199 + public String getRjlc() {
  200 + return rjlc;
  201 + }
  202 + public void setRjlc(String rjlc) {
  203 + this.rjlc = rjlc;
  204 + }
  205 + public String getRjbc() {
  206 + return rjbc;
  207 + }
  208 + public void setRjbc(String rjbc) {
  209 + this.rjbc = rjbc;
  210 + }
  211 + public String getRjrc() {
  212 + return rjrc;
  213 + }
  214 + public void setRjrc(String rjrc) {
  215 + this.rjrc = rjrc;
  216 + }
  217 + public String getRjdcrc() {
  218 + return rjdcrc;
  219 + }
  220 + public void setRjdcrc(String rjdcrc) {
  221 + this.rjdcrc = rjdcrc;
  222 + }
  223 + public String getMbcrc() {
  224 + return mbcrc;
  225 + }
  226 + public void setMbcrc(String mbcrc) {
  227 + this.mbcrc = mbcrc;
  228 + }
  229 + public String getJhzgl() {
  230 + return jhzgl;
  231 + }
  232 + public void setJhzgl(String jhzgl) {
  233 + this.jhzgl = jhzgl;
  234 + }
  235 + public String getSjzgl() {
  236 + return sjzgl;
  237 + }
  238 + public void setSjzgl(String sjzgl) {
  239 + this.sjzgl = sjzgl;
  240 + }
  241 + public String getSjyylc() {
  242 + return sjyylc;
  243 + }
  244 + public void setSjyylc(String sjyylc) {
  245 + this.sjyylc = sjyylc;
  246 + }
  247 + public String getLclyl() {
  248 + return lclyl;
  249 + }
  250 + public void setLclyl(String lclyl) {
  251 + this.lclyl = lclyl;
  252 + }
  253 + public String getBglrc() {
  254 + return bglrc;
  255 + }
  256 + public void setBglrc(String bglrc) {
  257 + this.bglrc = bglrc;
  258 + }
  259 + public String getYrc() {
  260 + return yrc;
  261 + }
  262 + public void setYrc(String yrc) {
  263 + this.yrc = yrc;
  264 + }
  265 + public String getYys() {
  266 + return yys;
  267 + }
  268 + public void setYys(String yys) {
  269 + this.yys = yys;
  270 + }
  271 + public String getPj() {
  272 + return pj;
  273 + }
  274 + public void setPj(String pj) {
  275 + this.pj = pj;
  276 + }
  277 + public String getBglys() {
  278 + return bglys;
  279 + }
  280 + public void setBglys(String bglys) {
  281 + this.bglys = bglys;
  282 + }
  283 + public String getTjgjz() {
  284 + return tjgjz;
  285 + }
  286 + public void setTjgjz(String tjgjz) {
  287 + this.tjgjz = tjgjz;
  288 + }
  289 + public String getTjsjyy() {
  290 + return tjsjyy;
  291 + }
  292 + public void setTjsjyy(String tjsjyy) {
  293 + this.tjsjyy = tjsjyy;
  294 + }
  295 + public String getWyx() {
  296 + return wyx;
  297 + }
  298 + public void setWyx(String wyx) {
  299 + this.wyx = wyx;
  300 + }
  301 + public String getXlzx() {
  302 + return xlzx;
  303 + }
  304 + public void setXlzx(String xlzx) {
  305 + this.xlzx = xlzx;
  306 + }
  307 + public String getXlzd() {
  308 + return xlzd;
  309 + }
  310 + public void setXlzd(String xlzd) {
  311 + this.xlzd = xlzd;
  312 + }
  313 + public String getBz() {
  314 + return bz;
  315 + }
  316 + public void setBz(String bz) {
  317 + this.bz = bz;
  318 + }
  319 + public Date getCreateDate() {
  320 + return createDate;
  321 + }
  322 + public void setCreateDate(Date createDate) {
  323 + this.createDate = createDate;
  324 + }
  325 +
  326 +}
... ...