IInspectionAnalysisService.java
1.7 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.skua.modules.inspection.service;
import com.skua.modules.inspection.vo.*;
import java.util.List;
import java.util.Map;
public interface IInspectionAnalysisService {
Map<String, Object> getAllInspectionHistoryAnalysis(String moduleType, String startTime, String endTime,String departId)throws Exception;
Map<String, Object> getInspectionHistoryAnalysis(String moduleType, String startTime, String endTime,String departId)throws Exception;
List<Map<String, Object>> getDepartInspectionHistoryAnalysis(String moduleType, String startTime, String endTime,String departId)throws Exception;
InspectionTaskIndicatorsVO getInspectionTaskIndicators(String startDate, String endDate);
/***
* 巡检分析-巡检设备指标
* @param startDate
* @param endDate
* @return
*/
InspectionEquipIndicatorsVO getInspectionEquipIndicators(String startDate, String endDate);
InspectionTaskOverviewVO getInspectionTaskOverview(String startDate, String endDate);
/***
* 巡检分析-巡检设备概况
* @param startDate
* @param endDate
* @return
*/
InspectionEquipOverviewVO getInspectionEquipOverview(String startDate, String endDate);
/***
* 巡检分析-巡检任务异常项趋势
* @param startDate
* @param endDate
* @return
*/
List<InspectionAbnormalItemsTrendVO> getInspectionAbnormalItemsTrend(String startDate, String endDate);
/***
* 巡检分析-巡检任务异常项趋势-详情
* @param departIds
* @param startDate
* @param endDate
* @return
*/
List<InspectionAbnormalItemsTrendVO> getInspectionAbnormalItemsTrendDetail(String departIds, String startDate, String endDate);
}