| | |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.zy.asrs.domain.vo.StationCycleCapacityVo; |
| | | import com.zy.asrs.domain.vo.StationCycleLoopVo; |
| | | import com.zy.asrs.entity.BasDevp; |
| | |
| | | } |
| | | |
| | | private void appendExcludeStationsFromDeviceConfig(Set<Integer> excludeStationSet) { |
| | | List<BasDevp> basDevpList = basDevpService.selectList(new EntityWrapper<>()); |
| | | List<BasDevp> basDevpList = basDevpService.list(new QueryWrapper<>()); |
| | | if (basDevpList == null || basDevpList.isEmpty()) { |
| | | return; |
| | | } |
| | |
| | | |
| | | private Map<Integer, Integer> buildStationWorkNoMap() { |
| | | Map<Integer, Integer> workNoMap = new HashMap<>(); |
| | | List<DeviceConfig> devpList = deviceConfigService.selectList(new EntityWrapper<DeviceConfig>() |
| | | List<DeviceConfig> devpList = deviceConfigService.list(new QueryWrapper<DeviceConfig>() |
| | | .eq("device_type", String.valueOf(SlaveType.Devp))); |
| | | if (devpList == null || devpList.isEmpty()) { |
| | | return workNoMap; |