| | |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.jeecg.modules.mdc.dto.MdcEquDepDto; |
| | | import org.jeecg.modules.mdc.dto.MdcEquProDto; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentDetailedDto; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentDto; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentMonitor; |
| | |
| | | @InterceptorIgnore(tenantLine = "1") |
| | | MdcEquipmentDto findWorkLineLast(@Param("tableName") String tableName); |
| | | |
| | | /** |
| | | * 根据id获取设备信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MdcEquipmentDetailedDto findById(@Param("id") String id); |
| | | |
| | | /** |
| | | * 根据产线id获取设备状态列表 |
| | | * @param workshopId |
| | | * @return |
| | | */ |
| | | List<MdcEquipmentMonitor> getEquipmentMonitorList(@Param("workshopId") String workshopId); |
| | | } |