| | |
| | | package org.jeecg.modules.eam.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.jeecg.modules.eam.entity.EamEquipment; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.eam.request.EamEquipmentQuery; |
| | | import org.jeecg.modules.eam.vo.EamEquipmentTree; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | List<EamEquipmentTree> loadTreeListByProductionIds(String ids); |
| | | |
| | | /** |
| | | * 设备台账分页查询 |
| | | * @param page |
| | | * @param eamEquipment |
| | | * @return |
| | | */ |
| | | IPage<EamEquipment> queryPageList(IPage<EamEquipment> page, EamEquipmentQuery eamEquipment); |
| | | } |