zt916916
2025-03-20 28dc7dc6eab44e3988886e9b0304c95d1ffb281d
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
package com.zhitan.comprehensivestatistics.service;
 
 
import com.zhitan.comprehensivestatistics.domain.MonthlyComprehensive;
 
import java.util.Date;
import java.util.List;
 
/**
 * 全厂综合能耗统计 月
 * 
 * @author sys
 * @date 2020-03-25
 */
public interface ImonthlyComprehensive {
    /**
     * 全厂综合能耗统计 月
     *
     * @param nodeId
     * @param dataList
     * @param beginTime
     * @param endTime
     * @param timeType
     * @param indexStorageId
     * @return
     */
    List<MonthlyComprehensive> getMonthlyComprehensiveList(String nodeId, List<MonthlyComprehensive> dataList, Date beginTime, Date endTime, String timeType, String indexStorageId);
 
    /**
     * 全厂综合能耗统计 月
     *
     * @param indexId
     * @param beginTime
     * @param endTime
     * @param timeType
     * @param indexStorageId
     * @return
     */
    List<MonthlyComprehensive> getListChart(String indexId, Date beginTime, Date endTime, String timeType, String indexStorageId);
}