1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.whyc.mapper;
|
| import com.whyc.pojo.BatteryTestData;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| public interface BatteryTestDataMapper {
| List<BatteryTestData> getInfoList();
|
| List<BatteryTestData> getInfoList2(@Param("battGroupId") int battGroupId);
|
| }
|
|