whyczh
2022-04-30 1e3f6acf661f090efa01d5ec3b7df56da5b54e29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
 
    void deleteByTestRecordCount(Integer battGroupId, Integer testRecordCount);
 
    //历史内阻数据查询
    List<BattResData> getResInfoByBattGroupId(@Param("battGroupId") int battGroupId);
    //判断表是否存在
    String checkTable(@Param("dbName") String dbName,@Param("tableName") String tableName);
}