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);
|
}
|