Commit e64ecc53071fa0dbb5819854453bf6447a48d7fb
1 parent
6d3b3973
站点信息表里删除站点类型字段
Showing
1 changed file
with
0 additions
and
11 deletions
src/main/java/com/bsth/entity/Station.java
| ... | ... | @@ -38,9 +38,6 @@ public class Station { |
| 38 | 38 | // 站点名称 |
| 39 | 39 | private String stationName; |
| 40 | 40 | |
| 41 | - // 站点类别 | |
| 42 | - private String stationType; | |
| 43 | - | |
| 44 | 41 | // 所在道路编码 |
| 45 | 42 | private String roadCoding; |
| 46 | 43 | |
| ... | ... | @@ -133,14 +130,6 @@ public class Station { |
| 133 | 130 | this.stationName = stationName; |
| 134 | 131 | } |
| 135 | 132 | |
| 136 | - public String getStationType() { | |
| 137 | - return stationType; | |
| 138 | - } | |
| 139 | - | |
| 140 | - public void setStationType(String stationType) { | |
| 141 | - this.stationType = stationType; | |
| 142 | - } | |
| 143 | - | |
| 144 | 133 | public String getRoadCoding() { |
| 145 | 134 | return roadCoding; |
| 146 | 135 | } | ... | ... |