1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.whyc.mapper;
|
| import com.whyc.pojo.Ld9testdataInf;
| import com.whyc.pojo.Ld9testdatastop;
|
| import java.util.List;
|
| public interface Ld9testdatastopMapper extends CustomMapper<Ld9testdatastop>{
| //查询LD9测试组端数据
| //List<Ld9testdatastop> serchByInfo(int testRecordCount, int battGroupId, int testMonNum);
| //查询LD9一次测试中所有单体的实际容量
| //List<Ld9testdatastop> serchByCondition(int testRecordCount, int battGroupId);
|
| //查询存放ld9stop在testrecordcount下有哪些单体存在放电记录
| //List<Ld9testdatastop> searchlinftestdata(Ld9testdataInf linf);
| }
|
|