whycxzp
2022-04-22 7f9ac4bf1b38b8e622f8c759efeca2af9dc12a48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.whyc.mapper;
 
import com.whyc.pojo.BattTestDataInf;
import com.whyc.pojo.BatteryTestDetail;
import org.apache.ibatis.annotations.Param;
 
import java.util.Collection;
import java.util.List;
 
public interface BatteryTestDetailMapper {
    List<BatteryTestDetail> getExtremum(int battGroupId, int uploadClientType);
 
    List<BatteryTestDetail> getExtremum2(@Param("tableName") String tableName);
 
}