Commit 1eb156134b303676aa78f2b35c8f78644a1c887d

Authored by 王通
1 parent ea3359c7

1.

src/main/java/com/bsth/service/impl/LsStationRouteServiceImpl.java
... ... @@ -336,6 +336,7 @@ public class LsStationRouteServiceImpl extends BaseServiceImpl<LsStationRoute, I
336 336 params.put("line.id_eq", lineId);
337 337 params.put("versions_eq", version);
338 338 params.put("directions_eq", direction);
  339 + params.put("destroy_eq", 0);
339 340 List<Sort.Order> orders1 = new ArrayList<>(), orders2 = new ArrayList<>();
340 341 orders1.add(new Sort.Order(Sort.Direction.ASC, "directions"));
341 342 orders1.add(new Sort.Order(Sort.Direction.ASC, "stationRouteCode"));
... ...