whyclxw
2022-01-07 dca5fa1b0367ccbc052ef953db6adb5c2e2bc64c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.whyc.mapper;
 
import com.whyc.pojo.BattRtstate;
import com.whyc.pojo.BatttestdataInf;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface BatttestdataInfMapper extends CustomMapper<BatttestdataInf>{
 
    //查询是否存在db_batt_testdata_id表
    int judge(@Param("battGroupId") int battGroupId);
 
    List<BatttestdataInf> searchByTestType(@Param("tinf") BatttestdataInf tinf);
    //1.4电池组性能评估(根据电池组id查询所有的放电记录求出放电总次数,最高历史容量,最低历史容量,平均容量,最新测试容量)
    List<BatttestdataInf> searchDischargeTest(@Param("tinf") BatttestdataInf tinf);
}