1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.dingzhuo.energy.project.plannedOutput.mapper;
|
| import com.dingzhuo.energy.project.plannedOutput.domain.energyMonitoring;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| /**
| * 【请填写功能名称】Mapper接口
| *
| * @author sys
| * @date 2020-12-17
| */
| public interface energyMonitoringMapper
| {
|
| /**
| * 查询列表
| */
| public List<energyMonitoring> selectEnergyMonitoringList(@Param("indexIds") List<Integer> indexIds, @Param("timeCode") String timeCode);
|
| }
|
|