| | |
| | | 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<BatttestdataInf>{ |
| | | //蓄电池核容信息统计 |
| | | List<BatttestdataInf> getBattTinfStatistic(@Param("stic") BattTinfStic stic); |
| | | //获取电池组未放电记录(指定时间段的标准核容放电) |
| | | List<BatttestdataInf> getNoDischargeData(@Param("battgroupId") Integer battgroupId,@Param("testStartTime") Date testStartTime |
| | | , @Param("testEndTime") Date testEndTime, @Param("typeList") List<Integer> typeList); |
| | | } |