fix: 修改生成配置文件名.

This commit is contained in:
lkqm 2021-04-03 01:08:31 +08:00
parent e1ef17bdc4
commit dd318762fa
1 changed files with 1 additions and 1 deletions

View File

@ -534,7 +534,7 @@ public class TableInfoServiceImpl implements TableInfoService {
String schemaName = DasUtil.getSchema(dbTable);
return schemaName + "-" + dbTable.getName() + ".json";
} else {
return tableInfo.getName() + "_class.json";
return tableInfo.getPsiClassObj().getQualifiedName() + ".json";
}
}