| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentDto; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | import org.jeecg.modules.mdc.entity.MdcFeedback; |
| | | import org.jeecg.modules.mdc.entity.MdcOverallEquipmentEfficiency; |
| | | import org.jeecg.modules.mdc.vo.MdcCommonVo; |
| | | import org.jeecg.modules.mdc.vo.MdcHomeEfficiencyVo; |
| | |
| | | * 工段级设备效率 |
| | | */ |
| | | MdcHomeEfficiencyVo getEquipmentEfficiencyStatistics(String userId, String key); |
| | | |
| | | /** |
| | | * 设备级效率统计 |
| | | */ |
| | | MdcHomeEfficiencyVo getEquipmentLevelEfficiencyStatistics(String equipmentId); |
| | | |
| | | /** |
| | | * 设备级整年度利用率和OEE |
| | | */ |
| | | Map<String, Object> getEquipmentAnnualEfficiencyStatistics(String equipmentId); |
| | | |
| | | /** |
| | | * 根据车间id获取设备列表 |
| | | */ |
| | | List<MdcEquipment> getEquipmentList(String key); |
| | | |
| | | /** |
| | | * 查询设备运行信息 |
| | | */ |
| | | MdcEquipmentDto getEquipmentDetails(String equipmentId); |
| | | |
| | | List<MdcFeedback> getFeedbackList(String key); |
| | | } |