whycxzp
2022-04-22 7f9ac4bf1b38b8e622f8c759efeca2af9dc12a48
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);
 
}