| | |
| | | } |
| | | |
| | | @Override |
| | | public List<EquipmentSearchResult> asyncLoadEquipment(String keyword, Integer pageSize) { |
| | | public List<EquipmentSearchResult> asyncLoadEquipment(String keyword, Integer pageSize, String id) { |
| | | if (StringUtils.isNotBlank(id)) { |
| | | EamEquipment eamEquipment = eamEquipmentMapper.selectById(id); |
| | | if (eamEquipment != null) { |
| | | List<EquipmentSearchResult> resultList = new ArrayList<>(); |
| | | resultList.add(new EquipmentSearchResult(eamEquipment)); |
| | | return resultList; |
| | | } |
| | | } |
| | | IPage<EamEquipment> page = new Page<>(1, pageSize); |
| | | QueryWrapper<EamEquipment> queryWrapper = new QueryWrapper<>(); |
| | | //用户数据权限 |