Commit 353ddaa712c1f0e3b524e639b52e331e35aeacdd
1 parent
a281a3bd
123
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/service/impl/LineVersionsServiceImpl.java
| ... | ... | @@ -320,6 +320,7 @@ public class LineVersionsServiceImpl extends BaseServiceImpl<LineVersions, Integ |
| 320 | 320 | oldStation.setAddr(newStation.getAddr()); |
| 321 | 321 | oldStation.setbJwpoints(newStation.getbJwpoints()); |
| 322 | 322 | oldStation.setbPolygonGrid(newStation.getbPolygonGrid()); |
| 323 | + oldStation.setgPolygonGrid(newStation.getgPolygonGrid()); | |
| 323 | 324 | oldStation.setCreateDate(new Date()); |
| 324 | 325 | oldStation.setDbType(newStation.getDbType()); |
| 325 | 326 | oldStation.setDescriptions(newStation.getDescriptions()); |
| ... | ... | @@ -337,7 +338,6 @@ public class LineVersionsServiceImpl extends BaseServiceImpl<LineVersions, Integ |
| 337 | 338 | oldStation.setX(newStation.getX()); |
| 338 | 339 | oldStation.setY(newStation.getY()); |
| 339 | 340 | |
| 340 | - | |
| 341 | 341 | stationRepository.save(oldStation); |
| 342 | 342 | |
| 343 | 343 | LsStationRoute oldData = stationList.get(i); | ... | ... |