Commit 1af20aca57b6ff2e44180038929a2595f476ad0e
1 parent
8f184fc6
1.车、线、站点、路段接口微调
Showing
1 changed file
with
3 additions
and
3 deletions
src/main/java/com/bsth/server_rs/base_info/line/Line.java
| ... | ... | @@ -118,7 +118,7 @@ public class Line implements Serializable { |
| 118 | 118 | * 运管处和app上线标识 |
| 119 | 119 | * @return |
| 120 | 120 | */ |
| 121 | - private int inUse; | |
| 121 | + private Integer inUse; | |
| 122 | 122 | |
| 123 | 123 | public String getName() { |
| 124 | 124 | return name; |
| ... | ... | @@ -361,11 +361,11 @@ public class Line implements Serializable { |
| 361 | 361 | this.region = region; |
| 362 | 362 | } |
| 363 | 363 | |
| 364 | - public int getInUse() { | |
| 364 | + public Integer getInUse() { | |
| 365 | 365 | return inUse; |
| 366 | 366 | } |
| 367 | 367 | |
| 368 | - public void setInUse(int inUse) { | |
| 368 | + public void setInUse(Integer inUse) { | |
| 369 | 369 | this.inUse = inUse; |
| 370 | 370 | } |
| 371 | 371 | } | ... | ... |