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
package com.dingzhuo.energy.project.energyStatistics.service;
 
 
import com.dingzhuo.energy.common.utils.time.TimeType;
import com.dingzhuo.energy.dataservice.domain.DataItem;
import com.dingzhuo.energy.project.energyStatistics.domain.dataTimeSVG;
 
import java.util.Date;
import java.util.List;
 
/**
 * 【请填写功能名称】Service接口
 *
 * @author ruoyi
 * @date 2020-02-07
 */
public interface IEnergyStatisticsService {
    public List<DataItem> statisticByCode(List<String> indexCodes, TimeType timeType, Date beginTime, Date endTime);
    List<dataTimeSVG> reportFormsvg(dataTimeSVG dataItem);
    List<dataTimeSVG> selectDataTimeList(dataTimeSVG dataItem);
}