Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
a4e2339f
You need to sign in or sign up before continuing.
Commit
a4e2339f
authored
Aug 26, 2020
by
RuoYi
Browse files
生成页面时不忽略remark属性
parent
bf771ae5
Changes
1
Hide whitespace changes
Inline
Side-by-side
ruoyi-generator/src/main/java/com/ruoyi/generator/domain/GenTableColumn.java
View file @
a4e2339f
...
...
@@ -340,7 +340,7 @@ public class GenTableColumn extends BaseEntity
public
static
boolean
isUsableColumn
(
String
javaField
)
{
// isSuperColumn()中的名单用于避免生成多余Domain属性,若某些属性在生成页面时需要用到不能忽略,则放在此处白名单
return
StringUtils
.
equalsAnyIgnoreCase
(
javaField
,
"parentId"
,
"orderNum"
);
return
StringUtils
.
equalsAnyIgnoreCase
(
javaField
,
"parentId"
,
"orderNum"
,
"remark"
);
}
public
String
readConverterExp
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment