package com.dingzhuo.energy.project.reportForm.mapper; import com.dingzhuo.energy.common.utils.time.TimeType; import com.dingzhuo.energy.project.reportForm.domain.dailyReport; import com.dingzhuo.energy.project.reportForm.domain.reportForm; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; /** * 阶段数据录入接口 * * @author sys * @date 2020-03-25 */ public interface reportFormMapper { public List selectReportFormList(@Param("code") String code); public List selectReportFormListp(@Param("code") String code); public List selectList(@Param("timeDate") String timeDate, @Param("code") String code, @Param("timeYear") String timeYear, @Param("timeType") TimeType timeType); /*public List getDailyReportList(*//*@Param("indexIds") List indexIds, @Param("beginTime") Date beginTime, @Param("endTime") Date endTime, @Param("timeType") TimeType timeType*//*);*/ public List getDailyReportList(@Param("indexIds") List indexIds, @Param("dataList") List dataList, @Param("beginTime") Date beginTime, @Param("endTime") Date endTime, @Param("timeType") TimeType timeType, @Param("indexStorageId") String indexStorageId); }