master
面包骑士 2024-08-21 14:41:13 +08:00
parent d91f671b45
commit ec8506d66e
1 changed files with 2 additions and 0 deletions

View File

@ -101,7 +101,9 @@ public class GenController extends BaseController
{
String[] tableNames = Convert.toStrArray(tables);
// 查询表信息
System.out.println(dbName +" "+ tables +" "+ tableNames);
List<GenTable> tableList = genTableService.selectDbTableListByNames(tableNames,dbName);
System.out.println(tableList);
genTableService.importGenTable(tableList);
return success();
}