z1415143022
2025-03-21 1ad212f3bb062a711d6626ed94e7ae12e5cd8b9c
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
package com.zhitan.processenergy.service;
 
import com.zhitan.processenergy.domain.DailyProcessEnergy;
 
import java.util.Date;
import java.util.List;
 
/**
 *工序能耗 日
 *
 * @author sys
 * @date 2021-01-11
 */
public interface IDailyProcessEnergyService {
 
    /**
     *
     * @param indexIds
     * @param dataList
     * @param beginTime
     * @param endTime
     * @param timeType
     * @param indexStorageId
     * @return
     */
    List<DailyProcessEnergy> getDailyProcessEnergyList(List<String> indexIds, List<DailyProcessEnergy> dataList, Date beginTime, Date endTime, String timeType, String indexStorageId);
 
    /**
     *
     * @param indexId
     * @param beginTime
     * @param endTime
     * @param timeType
     * @param indexStorageId
     * @return
     */
    List<DailyProcessEnergy> getListChart(String indexId, Date beginTime, Date endTime, String timeType, String indexStorageId);
}