liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
package com.dingzhuo.energy.project.keyEquipment.mapper;
 
import com.dingzhuo.energy.common.utils.time.TimeType;
import com.dingzhuo.energy.project.keyEquipment.domain.monthlyKeyEquipment;
import org.apache.ibatis.annotations.Param;
 
import java.util.Date;
import java.util.List;
 
/**
 *重点设备能耗统计 月
 *
 * @author sys
 * @date 2021-01-11
 */
public interface monthlyKeyEquipmentMapper {
    public List<monthlyKeyEquipment> getMonthlyKeyEquipmentList(@Param("indexIds") List<String> indexIds,
                                                                    @Param("dataList") List<monthlyKeyEquipment> dataList,
                                                                    @Param("beginTime") Date beginTime,
                                                                    @Param("endTime") Date endTime,
                                                                    @Param("timeType") TimeType timeType,
                                                                    @Param("indexStorageId") String indexStorageId);
    List<monthlyKeyEquipment> getListChart(@Param("indexId") String indexId,
                                               @Param("beginTime") Date beginTime,
                                               @Param("endTime") Date endTime,
                                               @Param("timeType") TimeType timeType,
                                               @Param("indexStorageId") String indexStorageId);
 
}