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
package com.dingzhuo.energy.project.benchmarking.mapper;
 
import com.dingzhuo.energy.common.utils.time.TimeType;
import com.dingzhuo.energy.project.benchmarking.domain.BenchmarkingManagement;
import org.apache.ibatis.annotations.Param;
 
import java.util.Date;
import java.util.List;
 
/**
 * 对标Mapper接口
 * 
 * @author sys
 * @date 2020-12-22
 */
public interface PhaseBenchmarkingMapper 
{
    /**
     * 查询对标列表
     * 
     * @param
     * @return 对标集合
     */
    public List<BenchmarkingManagement> selectPhaseBenchmarkingList(@Param("indexId") String indexIds,@Param("beginTime") Date beginTime,
                                                                    @Param("endTime") Date endTime,@Param("timeType") TimeType timeType);
    public List<BenchmarkingManagement> selectRealTimeListrealTime(@Param("indexIds") List<String> indexIds, @Param("timeCode") String timeCode);
 
}