Commit 84eee31a9ac402225a6e767194100e97a440500f

Authored by 娄高锋
1 parent 6d5e7b98

实际排班表实体类根据调度系统实体类增加了字段(ccService,lpChange)

src/main/java/com/bsth/entity/ScheduleRealInfo.java
... ... @@ -173,6 +173,14 @@ public class ScheduleRealInfo implements Serializable{
173 173 /** 是否有补发GPS信号 */
174 174 private boolean reissue;
175 175  
  176 +
  177 +
  178 + /**
  179 + * 换车营运标记 true 表示该主任务由 【中途换车子任务】 级联生成
  180 + */
  181 + private boolean ccService;
  182 + private Integer lpChange;
  183 +
176 184 @Override
177 185 public int hashCode() {
178 186 return (this.id + this.scheduleDateStr + this.xlBm + this.fcsj).hashCode();
... ... @@ -599,6 +607,22 @@ public class ScheduleRealInfo implements Serializable{
599 607 this.reissue = reissue;
600 608 }
601 609  
  610 + public boolean isCcService() {
  611 + return ccService;
  612 + }
  613 +
  614 + public void setCcService(boolean ccService) {
  615 + this.ccService = ccService;
  616 + }
  617 +
  618 + public Integer getLpChange() {
  619 + return lpChange;
  620 + }
  621 +
  622 + public void setLpChange(Integer lpChange) {
  623 + this.lpChange = lpChange;
  624 + }
  625 +
602 626 public Double getJhlcOrig() {
603 627 return jhlcOrig;
604 628 }
... ...