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 getMonthlyProcessEnergy(List indexIds, List dataList, Date beginTime, Date endTime, String timeType, String indexStorageId); List getListChart(String indexId, Date beginTime, Date endTime, String timeType, String indexStorageId); }