package com.whyc.mapper; import com.whyc.dto.Statistic.BattTinfStic; import com.whyc.pojo.db_batt_testdata.BatttestdataInf; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; public interface BatttestdataInfMapper extends CustomMapper{ //蓄电池核容信息统计 List getBattTinfStatistic(@Param("stic") BattTinfStic stic); //获取电池组未放电记录(指定时间段的标准核容放电) List getNoDischargeData(@Param("battgroupId") Integer battgroupId,@Param("testStartTime") Date testStartTime , @Param("testEndTime") Date testEndTime, @Param("typeList") List typeList); List getListByUserId(Integer userId); int getHrDisCount(Integer userId, Date startTime, Date endTime); }