Skip to content

Commit 5d7561b

Browse files
authored
处理建表字段包含 using 字符时无法生成对应字段的情况
例如: housing housing_code housing_id 等等字段名
1 parent bc7b765 commit 5d7561b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator-web/src/main/java/com/softdev/system/generator/util/TableParseUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ private static boolean isNotSpecialColumnLine(NonCaseString columnLine, int line
282282
!columnLine.containsAny(
283283
"key ",
284284
"constraint",
285-
"using",
285+
" using ",
286286
"unique ",
287287
"fulltext ",
288288
"index ",

0 commit comments

Comments
 (0)