| | |
| | | package org.jeecg.modules.screen.service; |
| | | |
| | | import org.jeecg.modules.screen.dto.AlarmInfoDto; |
| | | import org.jeecg.modules.screen.dto.EquipmentStatusOverview; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Author: Lius |
| | |
| | | /** |
| | | * 设备情况 |
| | | * |
| | | * @param workshopId |
| | | * @param productionId |
| | | * @return |
| | | */ |
| | | EquipmentStatusOverview equipmentStatusOverview(String workshopId); |
| | | EquipmentStatusOverview equipmentStatusOverview(String productionId); |
| | | |
| | | /** |
| | | * 设备月利用率趋势 |
| | | * |
| | | * @param productionId |
| | | * @return |
| | | */ |
| | | Map<String, Object> monthUtilizationTendency(String productionId); |
| | | |
| | | /** |
| | | * 设备周利用率趋势 |
| | | * |
| | | * @param productionId |
| | | * @return |
| | | */ |
| | | Map<String, Object> weekUtilizationTendency(String productionId); |
| | | |
| | | /** |
| | | * 设备日利用率 |
| | | * |
| | | * @param productionId |
| | | * @return |
| | | */ |
| | | Map<String, Object> dayUtilizationTendency(String productionId); |
| | | |
| | | /** |
| | | * 设备报警信息 |
| | | * |
| | | * @param productionId |
| | | * @return |
| | | */ |
| | | List<AlarmInfoDto> getAlarmInfo(String productionId); |
| | | } |