1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.zhitan.processenergy.service;
|
| import com.zhitan.common.enums.TimeType;
| import com.zhitan.processenergy.domain.MonthlyProcessEnergy;
|
| import java.util.Date;
| import java.util.List;
|
| /**
| *工序能耗 日
| *
| * @author sys
| * @date 2021-01-11
| */
| public interface IMonthlyProcessEnergyService {
| public List<MonthlyProcessEnergy> getMonthlyProcessEnergy(List<String> indexIds, List<MonthlyProcessEnergy> dataList, Date beginTime, Date endTime, String timeType, String indexStorageId);
|
| List<MonthlyProcessEnergy> getListChart(String indexId, Date beginTime, Date endTime, String timeType, String indexStorageId);
| }
|
|