Commit f3e062413fdd4a7a2f9365e7c1b5f44e172507f3
1 parent
3e1c7b92
1.线路调查表加入起讫站
Showing
4 changed files
with
333 additions
and
318 deletions
src/main/java/com/bsth/entity/calc/CalcInvestigateMonth.java
| 1 | -package com.bsth.entity.calc; | |
| 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.calc; | |
| 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 | + /** | |
| 90 | + * 起讫站 | |
| 91 | + */ | |
| 92 | + private String qqz; | |
| 93 | + | |
| 94 | + public Long getId() { | |
| 95 | + return id; | |
| 96 | + } | |
| 97 | + public void setId(Long id) { | |
| 98 | + this.id = id; | |
| 99 | + } | |
| 100 | + public String getMonth() { | |
| 101 | + return month; | |
| 102 | + } | |
| 103 | + public void setMonth(String month) { | |
| 104 | + this.month = month; | |
| 105 | + } | |
| 106 | + public String getGsbm() { | |
| 107 | + return gsbm; | |
| 108 | + } | |
| 109 | + public void setGsbm(String gsbm) { | |
| 110 | + this.gsbm = gsbm; | |
| 111 | + } | |
| 112 | + public String getFgsbm() { | |
| 113 | + return fgsbm; | |
| 114 | + } | |
| 115 | + public void setFgsbm(String fgsbm) { | |
| 116 | + this.fgsbm = fgsbm; | |
| 117 | + } | |
| 118 | + public String getXl() { | |
| 119 | + return xl; | |
| 120 | + } | |
| 121 | + public void setXl(String xl) { | |
| 122 | + this.xl = xl; | |
| 123 | + } | |
| 124 | + public String getXlmc() { | |
| 125 | + return xlmc; | |
| 126 | + } | |
| 127 | + public void setXlmc(String xlmc) { | |
| 128 | + this.xlmc = xlmc; | |
| 129 | + } | |
| 130 | + public String getQzpcs() { | |
| 131 | + return qzpcs; | |
| 132 | + } | |
| 133 | + public void setQzpcs(String qzpcs) { | |
| 134 | + this.qzpcs = qzpcs; | |
| 135 | + } | |
| 136 | + public String getXlsx() { | |
| 137 | + return xlsx; | |
| 138 | + } | |
| 139 | + public void setXlsx(String xlsx) { | |
| 140 | + this.xlsx = xlsx; | |
| 141 | + } | |
| 142 | + public String getXllx() { | |
| 143 | + return xllx; | |
| 144 | + } | |
| 145 | + public void setXllx(String xllx) { | |
| 146 | + this.xllx = xllx; | |
| 147 | + } | |
| 148 | + public String getXlcd() { | |
| 149 | + return xlcd; | |
| 150 | + } | |
| 151 | + public void setXlcd(String xlcd) { | |
| 152 | + this.xlcd = xlcd; | |
| 153 | + } | |
| 154 | + public String getSfgp() { | |
| 155 | + return sfgp; | |
| 156 | + } | |
| 157 | + public void setSfgp(String sfgp) { | |
| 158 | + this.sfgp = sfgp; | |
| 159 | + } | |
| 160 | + public String getSflpxl() { | |
| 161 | + return sflpxl; | |
| 162 | + } | |
| 163 | + public void setSflpxl(String sflpxl) { | |
| 164 | + this.sflpxl = sflpxl; | |
| 165 | + } | |
| 166 | + public String getSmbsj() { | |
| 167 | + return smbsj; | |
| 168 | + } | |
| 169 | + public void setSmbsj(String smbsj) { | |
| 170 | + this.smbsj = smbsj; | |
| 171 | + } | |
| 172 | + public String getDdfs() { | |
| 173 | + return ddfs; | |
| 174 | + } | |
| 175 | + public void setDdfs(String ddfs) { | |
| 176 | + this.ddfs = ddfs; | |
| 177 | + } | |
| 178 | + public String getGfjgsj() { | |
| 179 | + return gfjgsj; | |
| 180 | + } | |
| 181 | + public void setGfjgsj(String gfjgsj) { | |
| 182 | + this.gfjgsj = gfjgsj; | |
| 183 | + } | |
| 184 | + public String getDgjgsj() { | |
| 185 | + return dgjgsj; | |
| 186 | + } | |
| 187 | + public void setDgjgsj(String dgjgsj) { | |
| 188 | + this.dgjgsj = dgjgsj; | |
| 189 | + } | |
| 190 | + public String getSfxjgj() { | |
| 191 | + return sfxjgj; | |
| 192 | + } | |
| 193 | + public void setSfxjgj(String sfxjgj) { | |
| 194 | + this.sfxjgj = sfxjgj; | |
| 195 | + } | |
| 196 | + public String getRjlc() { | |
| 197 | + return rjlc; | |
| 198 | + } | |
| 199 | + public void setRjlc(String rjlc) { | |
| 200 | + this.rjlc = rjlc; | |
| 201 | + } | |
| 202 | + public String getRjbc() { | |
| 203 | + return rjbc; | |
| 204 | + } | |
| 205 | + public void setRjbc(String rjbc) { | |
| 206 | + this.rjbc = rjbc; | |
| 207 | + } | |
| 208 | + public String getRjrc() { | |
| 209 | + return rjrc; | |
| 210 | + } | |
| 211 | + public void setRjrc(String rjrc) { | |
| 212 | + this.rjrc = rjrc; | |
| 213 | + } | |
| 214 | + public String getRjdcrc() { | |
| 215 | + return rjdcrc; | |
| 216 | + } | |
| 217 | + public void setRjdcrc(String rjdcrc) { | |
| 218 | + this.rjdcrc = rjdcrc; | |
| 219 | + } | |
| 220 | + public String getMbcrc() { | |
| 221 | + return mbcrc; | |
| 222 | + } | |
| 223 | + public void setMbcrc(String mbcrc) { | |
| 224 | + this.mbcrc = mbcrc; | |
| 225 | + } | |
| 226 | + public String getJhzgl() { | |
| 227 | + return jhzgl; | |
| 228 | + } | |
| 229 | + public void setJhzgl(String jhzgl) { | |
| 230 | + this.jhzgl = jhzgl; | |
| 231 | + } | |
| 232 | + public String getSjzgl() { | |
| 233 | + return sjzgl; | |
| 234 | + } | |
| 235 | + public void setSjzgl(String sjzgl) { | |
| 236 | + this.sjzgl = sjzgl; | |
| 237 | + } | |
| 238 | + public String getSjyylc() { | |
| 239 | + return sjyylc; | |
| 240 | + } | |
| 241 | + public void setSjyylc(String sjyylc) { | |
| 242 | + this.sjyylc = sjyylc; | |
| 243 | + } | |
| 244 | + public String getLclyl() { | |
| 245 | + return lclyl; | |
| 246 | + } | |
| 247 | + public void setLclyl(String lclyl) { | |
| 248 | + this.lclyl = lclyl; | |
| 249 | + } | |
| 250 | + public String getBglrc() { | |
| 251 | + return bglrc; | |
| 252 | + } | |
| 253 | + public void setBglrc(String bglrc) { | |
| 254 | + this.bglrc = bglrc; | |
| 255 | + } | |
| 256 | + public String getYrc() { | |
| 257 | + return yrc; | |
| 258 | + } | |
| 259 | + public void setYrc(String yrc) { | |
| 260 | + this.yrc = yrc; | |
| 261 | + } | |
| 262 | + public String getYys() { | |
| 263 | + return yys; | |
| 264 | + } | |
| 265 | + public void setYys(String yys) { | |
| 266 | + this.yys = yys; | |
| 267 | + } | |
| 268 | + public String getPj() { | |
| 269 | + return pj; | |
| 270 | + } | |
| 271 | + public void setPj(String pj) { | |
| 272 | + this.pj = pj; | |
| 273 | + } | |
| 274 | + public String getBglys() { | |
| 275 | + return bglys; | |
| 276 | + } | |
| 277 | + public void setBglys(String bglys) { | |
| 278 | + this.bglys = bglys; | |
| 279 | + } | |
| 280 | + public String getTjgjz() { | |
| 281 | + return tjgjz; | |
| 282 | + } | |
| 283 | + public void setTjgjz(String tjgjz) { | |
| 284 | + this.tjgjz = tjgjz; | |
| 285 | + } | |
| 286 | + public String getTjsjyy() { | |
| 287 | + return tjsjyy; | |
| 288 | + } | |
| 289 | + public void setTjsjyy(String tjsjyy) { | |
| 290 | + this.tjsjyy = tjsjyy; | |
| 291 | + } | |
| 292 | + public String getWyx() { | |
| 293 | + return wyx; | |
| 294 | + } | |
| 295 | + public void setWyx(String wyx) { | |
| 296 | + this.wyx = wyx; | |
| 297 | + } | |
| 298 | + public String getXlzx() { | |
| 299 | + return xlzx; | |
| 300 | + } | |
| 301 | + public void setXlzx(String xlzx) { | |
| 302 | + this.xlzx = xlzx; | |
| 303 | + } | |
| 304 | + public String getXlzd() { | |
| 305 | + return xlzd; | |
| 306 | + } | |
| 307 | + public void setXlzd(String xlzd) { | |
| 308 | + this.xlzd = xlzd; | |
| 309 | + } | |
| 310 | + public String getBz() { | |
| 311 | + return bz; | |
| 312 | + } | |
| 313 | + public void setBz(String bz) { | |
| 314 | + this.bz = bz; | |
| 315 | + } | |
| 316 | + public Date getCreateDate() { | |
| 317 | + return createDate; | |
| 318 | + } | |
| 319 | + public void setCreateDate(Date createDate) { | |
| 320 | + this.createDate = createDate; | |
| 321 | + } | |
| 322 | + | |
| 323 | + public String getQqz() { | |
| 324 | + return qqz; | |
| 325 | + } | |
| 326 | + | |
| 327 | + public void setQqz(String qqz) { | |
| 328 | + this.qqz = qqz; | |
| 329 | + } | |
| 330 | +} | ... | ... |
src/main/java/com/bsth/service/calc/impl/CalcMixServiceImpl.java
| ... | ... | @@ -440,6 +440,7 @@ public class CalcMixServiceImpl implements CalcMixService { |
| 440 | 440 | map.put("xlzx", c.getXlzx()!=null?c.getXlzx():""); |
| 441 | 441 | map.put("xlzd", c.getXlzd()!=null?c.getXlzd():""); |
| 442 | 442 | map.put("bz", c.getBz()!=null?c.getBz():""); |
| 443 | + map.put("qqz", c.getQqz()!=null?c.getQqz():""); | |
| 443 | 444 | mapList.add(map); |
| 444 | 445 | } |
| 445 | 446 | listI.add(mapList.iterator()); | ... | ... |
src/main/resources/static/pages/forms/calc/calcInvestigateMonth.html
| ... | ... | @@ -94,6 +94,7 @@ |
| 94 | 94 | <td rowspan="2">线路长度</td> |
| 95 | 95 | <td rowspan="2">是否挂牌线路</td> |
| 96 | 96 | <td rowspan="2">是否冷僻线路</td> |
| 97 | + <td rowspan="2">起讫站</td> | |
| 97 | 98 | <td rowspan="2" style="min-width:175px">首末班时间</td> |
| 98 | 99 | |
| 99 | 100 | <td colspan="2">调度方式</td> |
| ... | ... | @@ -325,6 +326,7 @@ |
| 325 | 326 | <td>{{obj.xlcd}}</td> |
| 326 | 327 | <td>{{obj.sfgp}}</td> |
| 327 | 328 | <td>{{obj.sflpxl}}</td> |
| 329 | + <td>{{obj.qqz}}</td> | |
| 328 | 330 | <td>{{obj.smbsj}}</td> |
| 329 | 331 | <td>{{if obj.ddfs == '常规'}}√{{/if}}</td> |
| 330 | 332 | <td>{{if obj.ddfs == '多样化'}}√{{/if}}</td> | ... | ... |
src/main/resources/static/pages/forms/mould/calcInvestigateMonth.xls
No preview for this file type