Commit 60a9188671eb53d22b1f513ba252762273cdb099
1 parent
4bfbe881
Update
Showing
2 changed files
with
93 additions
and
109 deletions
pom.xml
| ... | ... | @@ -259,11 +259,11 @@ |
| 259 | 259 | </dependency> |
| 260 | 260 | |
| 261 | 261 | |
| 262 | - <dependency> | |
| 263 | - <groupId>ojdbc</groupId> | |
| 264 | - <artifactId>ojdbc</artifactId> | |
| 265 | - <version>14</version> | |
| 266 | - </dependency> | |
| 262 | + <!--<dependency>--> | |
| 263 | + <!--<groupId>ojdbc</groupId>--> | |
| 264 | + <!--<artifactId>ojdbc</artifactId>--> | |
| 265 | + <!--<version>14</version>--> | |
| 266 | + <!--</dependency>--> | |
| 267 | 267 | </dependencies> |
| 268 | 268 | |
| 269 | 269 | <dependencyManagement> | ... | ... |
src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
| ... | ... | @@ -89,8 +89,8 @@ public class SchedulePlanInfo { |
| 89 | 89 | private String xlDir; |
| 90 | 90 | /** 起点站id,根据班次类型,会关联 bsth_c_station,或 bsth_c_car_park,不做mapping */ |
| 91 | 91 | // 这个字段以后不用了 |
| 92 | - @Column(nullable = false) | |
| 93 | - private Integer qdz; | |
| 92 | +// @Column(nullable = false) | |
| 93 | +// private Integer qdz; | |
| 94 | 94 | /** 起点站code */ |
| 95 | 95 | private String qdzCode; |
| 96 | 96 | /** 起点站名字 */ |
| ... | ... | @@ -98,8 +98,8 @@ public class SchedulePlanInfo { |
| 98 | 98 | private String qdzName; |
| 99 | 99 | /** 终点站id,根据班次类型,会关联 bsth_c_station,或 bsth_c_car_park,不做mapping */ |
| 100 | 100 | // 这个字段以后不用了 |
| 101 | - @Column(nullable = false) | |
| 102 | - private Integer zdz; | |
| 101 | +// @Column(nullable = false) | |
| 102 | +// private Integer zdz; | |
| 103 | 103 | /** 终点站code */ |
| 104 | 104 | private String zdzCode; |
| 105 | 105 | /** 终点站名字 */ |
| ... | ... | @@ -264,7 +264,7 @@ public class SchedulePlanInfo { |
| 264 | 264 | if (pzType != null && !pzType.equals("BSY")) { |
| 265 | 265 | if ("ZW".equals(pzType)) { // 只看早晚进出场 |
| 266 | 266 | if (isFirstBc) { // 第一个班次是出场 |
| 267 | - this.qdz = carConfigInfo.getTcc().getId(); // 起点站-停车场id | |
| 267 | +// this.qdz = carConfigInfo.getTcc().getId(); // 起点站-停车场id | |
| 268 | 268 | this.qdzCode = carConfigInfo.getTcc().getParkCode(); // 起点站-停车场code |
| 269 | 269 | this.qdzName = carConfigInfo.getTcc().getParkName(); // 起点站-停车场name |
| 270 | 270 | |
| ... | ... | @@ -272,7 +272,7 @@ public class SchedulePlanInfo { |
| 272 | 272 | this.bcsj = "0".equals(this.xlDir) ? carConfigInfo.getUpOutSj().intValue() : carConfigInfo.getDownOutSj().intValue(); |
| 273 | 273 | |
| 274 | 274 | } else if (isLastBc) { // 最后一个班次是进场 |
| 275 | - this.zdz = carConfigInfo.getTcc().getId(); // 终点站-停车场id | |
| 275 | +// this.zdz = carConfigInfo.getTcc().getId(); // 终点站-停车场id | |
| 276 | 276 | this.zdzCode = carConfigInfo.getTcc().getParkCode(); // 终点站-停车场code |
| 277 | 277 | this.zdzName = carConfigInfo.getTcc().getParkName(); // 终点站-停车场name |
| 278 | 278 | |
| ... | ... | @@ -282,7 +282,7 @@ public class SchedulePlanInfo { |
| 282 | 282 | |
| 283 | 283 | } else if ("FS".equals(pzType)) { // 所有进出场 |
| 284 | 284 | if ("out".equals(this.bcType)) { // 出场班次 |
| 285 | - this.qdz = carConfigInfo.getTcc().getId(); // 起点站-停车场id | |
| 285 | +// this.qdz = carConfigInfo.getTcc().getId(); // 起点站-停车场id | |
| 286 | 286 | this.qdzCode = carConfigInfo.getTcc().getParkCode(); // 起点站-停车场code |
| 287 | 287 | this.qdzName = carConfigInfo.getTcc().getParkName(); // 起点站-停车场name |
| 288 | 288 | |
| ... | ... | @@ -290,7 +290,7 @@ public class SchedulePlanInfo { |
| 290 | 290 | this.bcsj = "0".equals(this.xlDir) ? carConfigInfo.getUpOutSj().intValue() : carConfigInfo.getDownOutSj().intValue(); |
| 291 | 291 | |
| 292 | 292 | } else if ("in".equals(this.bcType)) { |
| 293 | - this.zdz = carConfigInfo.getTcc().getId(); // 终点站-停车场id | |
| 293 | +// this.zdz = carConfigInfo.getTcc().getId(); // 终点站-停车场id | |
| 294 | 294 | this.zdzCode = carConfigInfo.getTcc().getParkCode(); // 终点站-停车场code |
| 295 | 295 | this.zdzName = carConfigInfo.getTcc().getParkName(); // 终点站-停车场name |
| 296 | 296 | |
| ... | ... | @@ -303,14 +303,6 @@ public class SchedulePlanInfo { |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | 305 | |
| 306 | - public Integer getS() { | |
| 307 | - return s; | |
| 308 | - } | |
| 309 | - | |
| 310 | - public void setS(Integer s) { | |
| 311 | - this.s = s; | |
| 312 | - } | |
| 313 | - | |
| 314 | 306 | public Long getId() { |
| 315 | 307 | return id; |
| 316 | 308 | } |
| ... | ... | @@ -327,6 +319,46 @@ public class SchedulePlanInfo { |
| 327 | 319 | this.scheduleDate = scheduleDate; |
| 328 | 320 | } |
| 329 | 321 | |
| 322 | + public String getGsName() { | |
| 323 | + return gsName; | |
| 324 | + } | |
| 325 | + | |
| 326 | + public void setGsName(String gsName) { | |
| 327 | + this.gsName = gsName; | |
| 328 | + } | |
| 329 | + | |
| 330 | + public String getGsBm() { | |
| 331 | + return gsBm; | |
| 332 | + } | |
| 333 | + | |
| 334 | + public void setGsBm(String gsBm) { | |
| 335 | + this.gsBm = gsBm; | |
| 336 | + } | |
| 337 | + | |
| 338 | + public String getFgsName() { | |
| 339 | + return fgsName; | |
| 340 | + } | |
| 341 | + | |
| 342 | + public void setFgsName(String fgsName) { | |
| 343 | + this.fgsName = fgsName; | |
| 344 | + } | |
| 345 | + | |
| 346 | + public String getFgsBm() { | |
| 347 | + return fgsBm; | |
| 348 | + } | |
| 349 | + | |
| 350 | + public void setFgsBm(String fgsBm) { | |
| 351 | + this.fgsBm = fgsBm; | |
| 352 | + } | |
| 353 | + | |
| 354 | + public Integer getCcno() { | |
| 355 | + return ccno; | |
| 356 | + } | |
| 357 | + | |
| 358 | + public void setCcno(Integer ccno) { | |
| 359 | + this.ccno = ccno; | |
| 360 | + } | |
| 361 | + | |
| 330 | 362 | public Integer getXl() { |
| 331 | 363 | return xl; |
| 332 | 364 | } |
| ... | ... | @@ -423,6 +455,14 @@ public class SchedulePlanInfo { |
| 423 | 455 | this.jName = jName; |
| 424 | 456 | } |
| 425 | 457 | |
| 458 | + public Integer getS() { | |
| 459 | + return s; | |
| 460 | + } | |
| 461 | + | |
| 462 | + public void setS(Integer s) { | |
| 463 | + this.s = s; | |
| 464 | + } | |
| 465 | + | |
| 426 | 466 | public String getsGh() { |
| 427 | 467 | return sGh; |
| 428 | 468 | } |
| ... | ... | @@ -447,12 +487,12 @@ public class SchedulePlanInfo { |
| 447 | 487 | this.xlDir = xlDir; |
| 448 | 488 | } |
| 449 | 489 | |
| 450 | - public Integer getQdz() { | |
| 451 | - return qdz; | |
| 490 | + public String getQdzCode() { | |
| 491 | + return qdzCode; | |
| 452 | 492 | } |
| 453 | 493 | |
| 454 | - public void setQdz(Integer qdz) { | |
| 455 | - this.qdz = qdz; | |
| 494 | + public void setQdzCode(String qdzCode) { | |
| 495 | + this.qdzCode = qdzCode; | |
| 456 | 496 | } |
| 457 | 497 | |
| 458 | 498 | public String getQdzName() { |
| ... | ... | @@ -463,12 +503,12 @@ public class SchedulePlanInfo { |
| 463 | 503 | this.qdzName = qdzName; |
| 464 | 504 | } |
| 465 | 505 | |
| 466 | - public Integer getZdz() { | |
| 467 | - return zdz; | |
| 506 | + public String getZdzCode() { | |
| 507 | + return zdzCode; | |
| 468 | 508 | } |
| 469 | 509 | |
| 470 | - public void setZdz(Integer zdz) { | |
| 471 | - this.zdz = zdz; | |
| 510 | + public void setZdzCode(String zdzCode) { | |
| 511 | + this.zdzCode = zdzCode; | |
| 472 | 512 | } |
| 473 | 513 | |
| 474 | 514 | public String getZdzName() { |
| ... | ... | @@ -527,6 +567,30 @@ public class SchedulePlanInfo { |
| 527 | 567 | this.bcType = bcType; |
| 528 | 568 | } |
| 529 | 569 | |
| 570 | + public Long getTtInfo() { | |
| 571 | + return ttInfo; | |
| 572 | + } | |
| 573 | + | |
| 574 | + public void setTtInfo(Long ttInfo) { | |
| 575 | + this.ttInfo = ttInfo; | |
| 576 | + } | |
| 577 | + | |
| 578 | + public String getTtInfoName() { | |
| 579 | + return ttInfoName; | |
| 580 | + } | |
| 581 | + | |
| 582 | + public void setTtInfoName(String ttInfoName) { | |
| 583 | + this.ttInfoName = ttInfoName; | |
| 584 | + } | |
| 585 | + | |
| 586 | + public String getRemark() { | |
| 587 | + return remark; | |
| 588 | + } | |
| 589 | + | |
| 590 | + public void setRemark(String remark) { | |
| 591 | + this.remark = remark; | |
| 592 | + } | |
| 593 | + | |
| 530 | 594 | public SysUser getCreateBy() { |
| 531 | 595 | return createBy; |
| 532 | 596 | } |
| ... | ... | @@ -559,62 +623,6 @@ public class SchedulePlanInfo { |
| 559 | 623 | this.updateDate = updateDate; |
| 560 | 624 | } |
| 561 | 625 | |
| 562 | - public String getQdzCode() { | |
| 563 | - return qdzCode; | |
| 564 | - } | |
| 565 | - | |
| 566 | - public void setQdzCode(String qdzCode) { | |
| 567 | - this.qdzCode = qdzCode; | |
| 568 | - } | |
| 569 | - | |
| 570 | - public String getZdzCode() { | |
| 571 | - return zdzCode; | |
| 572 | - } | |
| 573 | - | |
| 574 | - public void setZdzCode(String zdzCode) { | |
| 575 | - this.zdzCode = zdzCode; | |
| 576 | - } | |
| 577 | - | |
| 578 | - public String getGsName() { | |
| 579 | - return gsName; | |
| 580 | - } | |
| 581 | - | |
| 582 | - public void setGsName(String gsName) { | |
| 583 | - this.gsName = gsName; | |
| 584 | - } | |
| 585 | - | |
| 586 | - public String getGsBm() { | |
| 587 | - return gsBm; | |
| 588 | - } | |
| 589 | - | |
| 590 | - public void setGsBm(String gsBm) { | |
| 591 | - this.gsBm = gsBm; | |
| 592 | - } | |
| 593 | - | |
| 594 | - public String getFgsName() { | |
| 595 | - return fgsName; | |
| 596 | - } | |
| 597 | - | |
| 598 | - public void setFgsName(String fgsName) { | |
| 599 | - this.fgsName = fgsName; | |
| 600 | - } | |
| 601 | - | |
| 602 | - public String getFgsBm() { | |
| 603 | - return fgsBm; | |
| 604 | - } | |
| 605 | - | |
| 606 | - public void setFgsBm(String fgsBm) { | |
| 607 | - this.fgsBm = fgsBm; | |
| 608 | - } | |
| 609 | - | |
| 610 | - public Integer getCcno() { | |
| 611 | - return ccno; | |
| 612 | - } | |
| 613 | - | |
| 614 | - public void setCcno(Integer ccno) { | |
| 615 | - this.ccno = ccno; | |
| 616 | - } | |
| 617 | - | |
| 618 | 626 | public SchedulePlan getSchedulePlan() { |
| 619 | 627 | return schedulePlan; |
| 620 | 628 | } |
| ... | ... | @@ -622,28 +630,4 @@ public class SchedulePlanInfo { |
| 622 | 630 | public void setSchedulePlan(SchedulePlan schedulePlan) { |
| 623 | 631 | this.schedulePlan = schedulePlan; |
| 624 | 632 | } |
| 625 | - | |
| 626 | - public Long getTtInfo() { | |
| 627 | - return ttInfo; | |
| 628 | - } | |
| 629 | - | |
| 630 | - public void setTtInfo(Long ttInfo) { | |
| 631 | - this.ttInfo = ttInfo; | |
| 632 | - } | |
| 633 | - | |
| 634 | - public String getTtInfoName() { | |
| 635 | - return ttInfoName; | |
| 636 | - } | |
| 637 | - | |
| 638 | - public void setTtInfoName(String ttInfoName) { | |
| 639 | - this.ttInfoName = ttInfoName; | |
| 640 | - } | |
| 641 | - | |
| 642 | - public String getRemark() { | |
| 643 | - return remark; | |
| 644 | - } | |
| 645 | - | |
| 646 | - public void setRemark(String remark) { | |
| 647 | - this.remark = remark; | |
| 648 | - } | |
| 649 | 633 | } | ... | ... |