ICommandCentreService.java
1.0 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
package com.skua.modules.dataAnalysis.service;
import com.skua.modules.algorithm.vo.WaterTreatmentVO;
import com.skua.modules.report.vo.*;
import java.util.List;
import java.util.Map;
/**
* <pre>
* 指挥中心实现逻辑
* </pre>
* @author 康伟
* @version V0.1, 2024年9月3日
*/
public interface ICommandCentreService {
/**
* 查询费用
* @param reportItemvParam
* @return
*/
public List<ReportDateTrendVO> getFyData(ReportItemvParam reportItemvParam);
/**
* 获取药剂
* @param month
* @return
*/
DepartDrugResult getYhTotal(String month);
/***
* 指挥中心----运行负荷率分析----处理水量详情
* @param
* @return
*/
List<WaterTreatmentVO> statisticsCLSLXQ(String startDate,String endDate ,String departIds);
/***
* 指挥中心----设备维修维护费用分析
* @param startDate
* @param endDate
* @return
*/
Map<String, Object> equipmentRepairAnalysis(String startDate, String endDate);
}