package com.zhitan.keyequipment.mapper; import com.zhitan.common.utils.TypeTime; import com.zhitan.keyequipment.domain.YearKeyEquipment; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; /** *重点设备能耗统计 年 * * @author sys * @date 2021-01-11 */ public interface YearKeyEquipmentMapper { public List getYearKeyEquipmentList(@Param("indexIds") List indexIds, @Param("dataList") List dataList, @Param("beginTime") Date beginTime, @Param("endTime") Date endTime, @Param("timeType") String timeType, @Param("indexStorageId") String indexStorageId); List getListChart(@Param("indexId") String indexId, @Param("beginTime") Date beginTime, @Param("endTime") Date endTime, @Param("timeType") String timeType ); }