lxw
2023-10-31 4a687665280ee8c21aee3c20e1c325f6d8b87c8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.whyc.mapper;
 
import com.whyc.pojo.Ld9testdata;
import com.whyc.pojo.Ld9testdataInf;
import org.apache.ibatis.annotations.MapKey;
 
import java.util.List;
import java.util.Map;
 
public interface Ld9testdataMapper extends CustomMapper<Ld9testdata>{
    //查询某次测试下电池组节数放电情况
    //List<Ld9testdata>  serchByInfo(Ld9testdata ld9testdata);
    //查询LD9单体测试数据
    //List<Ld9testdata> serchByCondition(int roteN, int testRecordCount, int battGroupId, int testMonNum);
 
    //根据电池组id和test_record_count查询出整组的放电记录
    //List<Ld9testdata> getLD9AllGroupByTestRecordCount(Ld9testdataInf ld9inf);
 
    //@MapKey("mon_num")
    //根据电池组id和test_record_count算出总时间
    //Map getLD9AllGroupTimeLong(Ld9testdataInf ld9inf);
}