| | |
| | | PageParam<BasStation, BaseParam> page = basStationService.page(pageParam, pageParam.buildWrapper(true)); |
| | | for (BasStation station : page.getRecords()) { |
| | | if (!Cools.isEmpty(station.getCrossZoneArea())) { |
| | | List<Long> longs1 = JSONObject.parseArray(station.getCrossZoneArea(), Long.class); |
| | | List<Long> longs1 = station.getCrossZoneArea(); |
| | | station.setAreaIds(longs1); |
| | | } |
| | | if (!Cools.isEmpty(station.getContainerType())) { |
| | | List<Long> longs1 = JSONObject.parseArray(station.getContainerType(), Long.class); |
| | | List<Long> longs1 = station.getContainerType(); |
| | | station.setContainerTypes(longs1); |
| | | } |
| | | |