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);
|
| }
|
|