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 b00626f commit 3c530caCopy full SHA for 3c530ca
src/test/java/CodeGenerator.java
@@ -183,6 +183,7 @@ private static freemarker.template.Configuration getConfiguration() throws IOExc
183
private static String tableNameConvertLowerCamel(String tableName) {
184
StringBuilder result = new StringBuilder();
185
if (tableName != null && tableName.length() > 0) {
186
+ tableName = tableName.toLowerCase();//兼容使用大写的表名
187
boolean flag = false;
188
for (int i = 0; i < tableName.length(); i++) {
189
char ch = tableName.charAt(i);
0 commit comments