| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.dto.MdcEquDepDto; |
| | | import org.jeecg.modules.mdc.dto.MdcEquProDto; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentMonitor; |
| | | import org.jeecg.modules.mdc.vo.MdcEquipmentDepVo; |
| | |
| | | * 根据部门id查询设备id集合 |
| | | */ |
| | | List<String> queryIdsByDeparts(@Param("allDepartIds") List<String> allDepartIds); |
| | | |
| | | /** |
| | | * 根据设备编号查询设备信息和部门信息 |
| | | * |
| | | * @param equipmentIdList |
| | | * @return |
| | | */ |
| | | List<MdcEquDepDto> findEquDepList(@Param("equipmentIdList") List<String> equipmentIdList); |
| | | |
| | | /** |
| | | * 根据设备编号查询设备信息和产线信息 |
| | | * |
| | | * @param equipmentIdList |
| | | * @return |
| | | */ |
| | | List<MdcEquProDto> findEquProList(@Param("equipmentIdList") List<String> equipmentIdList); |
| | | } |