1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.whyc.mapper;
|
| import com.whyc.pojo.BattResData;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| public interface BattResDataMapper extends CustomMapper<BattResData> {
| Float calcAvgVol(Integer battGroupId, Integer testRecordCount);
|
| BattResData getMinInfo(Integer battGroupId, Integer testRecordCount);
| //历史内阻数据查询
| List<BattResData> getResInfoByBattGroupId(@Param("battGroupId") int battGroupId);
| //判断表是否存在
| String checkTable(@Param("dbName") String dbName,@Param("tableName") String tableName);
| }
|
|