1
2
3
4
5
6
7
8
9
10
11
12
| package com.whyc.mapper;
|
| 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);
| }
|
|