mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-08 01:28:24 +08:00
!177 当配置camelToUnderline属性时entity生成后编译错误的问题
Merge pull request !177 from Z.cg/main
This commit is contained in:
commit
1b77bcc1f9
@ -245,7 +245,7 @@ public class Table {
|
||||
tableAnnotation.append(", schema = \"").append(tableConfig.getSchema()).append("\"");
|
||||
}
|
||||
if (tableConfig.getCamelToUnderline() != null) {
|
||||
tableAnnotation.append(", camelToUnderline = \"").append(tableConfig.getCamelToUnderline()).append("\"");
|
||||
tableAnnotation.append(", camelToUnderline = ").append(tableConfig.getCamelToUnderline());
|
||||
}
|
||||
if (tableConfig.getInsertListenerClass() != null) {
|
||||
tableAnnotation.append(", onInsert = ").append(tableConfig.getInsertListenerClass().getSimpleName()).append(".class");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user