package org.jeecg.modules.eam.service; import java.util.List; import java.util.Map; public interface IEquipmentHomeService { /** *首页 技术状态数量统计 */ List> getEquipmentTechnologyStatusList(); /** *首页 设备报修情况统计 */ List> getReportRepairEquipmentList(); /** *首页 三保计划 */ Map getThirdGuaranteesPlan(); /** *首页 二保计划 */ Map getSecondGuaranteesPlan(); }