Commit 66aa765fd5bab242e4674892a8e936d90ccac946

Authored by yiming
1 parent b42482ae

bf

bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/domain/BsthTLine.java
@@ -80,7 +80,7 @@ public class BsthTLine extends BaseEntity @@ -80,7 +80,7 @@ public class BsthTLine extends BaseEntity
80 80
81 /** 线路长度 */ 81 /** 线路长度 */
82 @Excel(name = "线路长度") 82 @Excel(name = "线路长度")
83 - private Long lineDistance; 83 + private String lineDistance;
84 84
85 /** 线路编码 */ 85 /** 线路编码 */
86 @Excel(name = "线路编码") 86 @Excel(name = "线路编码")
@@ -500,15 +500,15 @@ public class BsthTLine extends BaseEntity @@ -500,15 +500,15 @@ public class BsthTLine extends BaseEntity
500 { 500 {
501 return serviceTime; 501 return serviceTime;
502 } 502 }
503 - public void setLineDistance(Long lineDistance)  
504 - {  
505 - this.lineDistance = lineDistance;  
506 - }  
507 503
508 - public Long getLineDistance()  
509 - { 504 + public String getLineDistance() {
510 return lineDistance; 505 return lineDistance;
511 } 506 }
  507 +
  508 + public void setLineDistance(String lineDistance) {
  509 + this.lineDistance = lineDistance;
  510 + }
  511 +
512 public void setLineCode(String lineCode) 512 public void setLineCode(String lineCode)
513 { 513 {
514 this.lineCode = lineCode; 514 this.lineCode = lineCode;
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/domain/LineEditReport.java
@@ -25,10 +25,10 @@ public class LineEditReport extends BaseEntity @@ -25,10 +25,10 @@ public class LineEditReport extends BaseEntity
25 private String company; 25 private String company;
26 26
27 @Excel(name = "线路长度") 27 @Excel(name = "线路长度")
28 - private Long lineDistance; 28 + private String lineDistance;
29 29
30 @Excel(name = "原线路长度") 30 @Excel(name = "原线路长度")
31 - private Long lineDistanceBefore; 31 + private String lineDistanceBefore;
32 32
33 @Excel(name = "起讫站") 33 @Excel(name = "起讫站")
34 private String startEnd; 34 private String startEnd;
@@ -78,19 +78,19 @@ public class LineEditReport extends BaseEntity @@ -78,19 +78,19 @@ public class LineEditReport extends BaseEntity
78 this.company = company; 78 this.company = company;
79 } 79 }
80 80
81 - public Long getLineDistance() { 81 + public String getLineDistance() {
82 return lineDistance; 82 return lineDistance;
83 } 83 }
84 84
85 - public void setLineDistance(Long lineDistance) { 85 + public void setLineDistance(String lineDistance) {
86 this.lineDistance = lineDistance; 86 this.lineDistance = lineDistance;
87 } 87 }
88 88
89 - public Long getLineDistanceBefore() { 89 + public String getLineDistanceBefore() {
90 return lineDistanceBefore; 90 return lineDistanceBefore;
91 } 91 }
92 92
93 - public void setLineDistanceBefore(Long lineDistanceBefore) { 93 + public void setLineDistanceBefore(String lineDistanceBefore) {
94 this.lineDistanceBefore = lineDistanceBefore; 94 this.lineDistanceBefore = lineDistanceBefore;
95 } 95 }
96 96
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/domain/LineHistoryReport.java
@@ -95,9 +95,9 @@ public class LineHistoryReport extends BaseEntity @@ -95,9 +95,9 @@ public class LineHistoryReport extends BaseEntity
95 private String serviceTimeOld; 95 private String serviceTimeOld;
96 96
97 @Excel(name = "线路长度") 97 @Excel(name = "线路长度")
98 - private Long lineDistance; 98 + private String lineDistance;
99 @Excel(name = "原线路长度") 99 @Excel(name = "原线路长度")
100 - private Long lineDistanceOld; 100 + private String lineDistanceOld;
101 101
102 @Excel(name = "线路编码") 102 @Excel(name = "线路编码")
103 private String lineCode; 103 private String lineCode;
@@ -615,19 +615,19 @@ public class LineHistoryReport extends BaseEntity @@ -615,19 +615,19 @@ public class LineHistoryReport extends BaseEntity
615 this.serviceTimeOld = serviceTimeOld; 615 this.serviceTimeOld = serviceTimeOld;
616 } 616 }
617 617
618 - public Long getLineDistance() { 618 + public String getLineDistance() {
619 return lineDistance; 619 return lineDistance;
620 } 620 }
621 621
622 - public void setLineDistance(Long lineDistance) { 622 + public void setLineDistance(String lineDistance) {
623 this.lineDistance = lineDistance; 623 this.lineDistance = lineDistance;
624 } 624 }
625 625
626 - public Long getLineDistanceOld() { 626 + public String getLineDistanceOld() {
627 return lineDistanceOld; 627 return lineDistanceOld;
628 } 628 }
629 629
630 - public void setLineDistanceOld(Long lineDistanceOld) { 630 + public void setLineDistanceOld(String lineDistanceOld) {
631 this.lineDistanceOld = lineDistanceOld; 631 this.lineDistanceOld = lineDistanceOld;
632 } 632 }
633 633