package com.whyc.mapper;
|
|
import com.whyc.pojo.BattTestDataInf;
|
import com.whyc.pojo.BatteryStorageTestDetail;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import java.util.Collection;
|
import java.util.List;
|
|
public interface BatteryStorageTestDetailMapper {
|
|
int getAll2(int groupId, int testId);
|
|
List<BatteryStorageTestDetail> getInfo(@Param("tableName") String tableName);
|
|
void createIndexBatch(List<String> groupTableList);
|
|
List<BattTestDataInf> getIncorrectData(@Param("tableName") String tableName);
|
|
}
|