package org.jeecg.modules.mdc.service;
|
|
import org.jeecg.modules.mdc.entity.MdcOverallEquipmentEfficiency;
|
import org.jeecg.modules.mdc.vo.MdcCommonVo;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @author Lius
|
* @date 2024/3/14 9:51
|
*/
|
public interface IMdcHomeService {
|
|
/**
|
* 设备运行状态统计
|
*/
|
List<MdcCommonVo> getEquipmentStatusStatistics(String userId, String key);
|
|
/**
|
* 设备利用率统计
|
*/
|
List<MdcCommonVo> getEquipmentUtilizationStatistics(String userId, String key);
|
|
/**
|
* 设备OEE统计
|
*/
|
List<MdcCommonVo> getEquipmentOeeStatistics(String userId, String key);
|
|
/**
|
* 设备OEE和利用率统计柱状图
|
*/
|
Map<String, Object> getEquipmentMonthStatistics(String userId, String key);
|
|
/**
|
* 工段级前七天利用率折线图
|
*/
|
Map<String, Object> getEquipmentDayUtilizationStatistics(String userId, String key);
|
|
/**
|
* 查询设备上月OEE
|
*/
|
List<MdcOverallEquipmentEfficiency> getEquipmentOEEMonthStatistics(String userId, String key);
|
}
|