Lius
2024-10-31 7d8887e36acb71ee20bf2f55170571b3fa7621b7
lxzn-module-mdc/src/main/java/org/jeecg/modules/screen/service/MdcSubLargeScreenService.java
@@ -1,7 +1,10 @@
package org.jeecg.modules.screen.service;
import org.jeecg.modules.mdc.entity.EquipmentAlarm;
import org.jeecg.modules.mdc.entity.MdcEquipmentMonitor;
import org.jeecg.modules.screen.dto.EquipmentInfoDto;
import org.jeecg.modules.screen.dto.MdcProductDayscheduleDto;
import org.jeecg.modules.screen.dto.ToolLifeDto;
import java.util.List;
@@ -26,4 +29,27 @@
     */
    List<MdcEquipmentMonitor> equipmentStatus(String productionId);
    /**
     * 设备报警
     *
     * @param productionId
     * @return
     */
    List<EquipmentAlarm> equipmentAlarm(String productionId);
    /**
     * 刀具寿命管理
     *
     * @param productionId
     * @return
     */
    List<ToolLifeDto> toolLifeList(String productionId);
    /**
     * 分控看板设备详细信息
     *
     * @param equipmentId
     * @return
     */
    EquipmentInfoDto equipmentInfo(String equipmentId);
}