Commit 1af20aca57b6ff2e44180038929a2595f476ad0e

Authored by 王通
1 parent 8f184fc6

1.车、线、站点、路段接口微调

src/main/java/com/bsth/server_rs/base_info/line/Line.java
@@ -118,7 +118,7 @@ public class Line implements Serializable { @@ -118,7 +118,7 @@ public class Line implements Serializable {
118 * 运管处和app上线标识 118 * 运管处和app上线标识
119 * @return 119 * @return
120 */ 120 */
121 - private int inUse; 121 + private Integer inUse;
122 122
123 public String getName() { 123 public String getName() {
124 return name; 124 return name;
@@ -361,11 +361,11 @@ public class Line implements Serializable { @@ -361,11 +361,11 @@ public class Line implements Serializable {
361 this.region = region; 361 this.region = region;
362 } 362 }
363 363
364 - public int getInUse() { 364 + public Integer getInUse() {
365 return inUse; 365 return inUse;
366 } 366 }
367 367
368 - public void setInUse(int inUse) { 368 + public void setInUse(Integer inUse) {
369 this.inUse = inUse; 369 this.inUse = inUse;
370 } 370 }
371 } 371 }