We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eee7b8 commit 39cac03Copy full SHA for 39cac03
src/test/java/CodeGenerator.java
@@ -209,6 +209,7 @@ private static String tableNameConvertUpperCamel(String tableName) {
209
}
210
211
private static String tableNameConvertMappingPath(String tableName) {
212
+ tableName = tableName.toLowerCase();//兼容使用大写的表名
213
return "/" + (tableName.contains("_") ? tableName.replaceAll("_", "/") : tableName);
214
215
0 commit comments