|
@@ -104,8 +104,8 @@ public class ToolCodegenServiceImpl implements ToolCodegenService {
|
|
|
//获取当前schema
|
|
|
String tableSchema = codegenProperties.getDbSchemas().iterator().next();
|
|
|
// 从数据库中,获得数据库表结构
|
|
|
- ToolSchemaTableDO schemaTable = schemaTableMapper.selectByTableName1(tableSchema,tableName);
|
|
|
- List<ToolSchemaColumnDO> schemaColumns = schemaColumnMapper.selectListByTableName(tableSchema,tableName);
|
|
|
+ ToolSchemaTableDO schemaTable = schemaTableMapper.selectByTableName1(tableSchema, tableName);
|
|
|
+ List<ToolSchemaColumnDO> schemaColumns = schemaColumnMapper.selectListByTableName(tableSchema, tableName);
|
|
|
// 导入
|
|
|
return this.createCodegen0(ToolCodegenImportTypeEnum.DB, schemaTable, schemaColumns);
|
|
|
}
|
|
@@ -145,7 +145,7 @@ public class ToolCodegenServiceImpl implements ToolCodegenService {
|
|
|
}
|
|
|
String tableSchema = codegenProperties.getDbSchemas().iterator().next();
|
|
|
// 从数据库中,获得数据库表结构
|
|
|
- List<ToolSchemaColumnDO> schemaColumns = schemaColumnMapper.selectListByTableName(tableSchema,table.getTableName());
|
|
|
+ List<ToolSchemaColumnDO> schemaColumns = schemaColumnMapper.selectListByTableName(tableSchema, table.getTableName());
|
|
|
|
|
|
// 执行同步
|
|
|
this.syncCodegen0(tableId, schemaColumns);
|