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.service;
|
| 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;
|
| /**
| * 对标Service接口
| *
| * @author sys
| * @date 2020-12-22
| */
| public interface IPhaseBenchmarkingService
| {
|
| /**
| * 查询对标列表
| *
| * @param
| * @return 对标集合
| */
| public List<BenchmarkingManagement> selectPhaseBenchmarkingList(String indexId, Date beginTime,Date endTime, TimeType timeType);
| public List<BenchmarkingManagement> selectRealTimeListrealTime(List<String> indexIds, Date dateTime, TimeType timeType);
|
| }
|
|