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.BattTestDataInf;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface TableMapper {
    List<String> getTableNameLike(String dbName, String tableNameLike);
 
    void createTable(@Param("dbName") String dbName, List<BattTestDataInf> tableSuffixList);
 
}