| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.eam.request.EamEquipmentQuery; |
| | | import org.jeecg.modules.eam.vo.EamEquipmentTree; |
| | | import org.jeecg.modules.eam.vo.EquipmentSearchResult; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | IPage<EamEquipment> queryPageList(IPage<EamEquipment> page, EamEquipmentQuery eamEquipment); |
| | | |
| | | /** |
| | | * 关键字搜索 |
| | | * @param keyword |
| | | * @param pageSize |
| | | * @return |
| | | */ |
| | | List<EquipmentSearchResult> asyncLoadEquipment(String keyword, Integer pageSize, String id); |
| | | |
| | | /** |
| | | * 查询设备信息 |
| | | * @param equipmentCode |
| | | * @return |
| | | */ |
| | | EamEquipment selectByEquipmentCode(String equipmentCode); |
| | | } |