hyingbo
3 天以前 6da57b610d97be3f79084d43440e7823d707b249
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.jeecg.modules.eam.service;
 
import java.util.List;
import java.util.Map;
 
public interface IEquipmentHomeService {
    /**
     *首页 技术状态数量统计
     */
    List<Map<String, Object>> getEquipmentTechnologyStatusList();
 
    /**
     *首页 设备报修情况统计
     */
    List<Map<String, Object>> getReportRepairEquipmentList();
 
    /**
     *首页 三保计划
     */
    Map<String, Object> getThirdGuaranteesPlan();
 
    /**
     *首页 二保计划
     */
    Map<String, Object> getSecondGuaranteesPlan();
}