1. 新增业务流程任务表单可配置自定义路由表单选项
fix:
1. 修复 mysql 脚本部分字段未同步脚本的错误
2. 角色为空无法登录系统
3. 主子表缩写命名下代码生成器错误
(cherry picked from commit 3812611b04)
This commit is contained in:
@@ -86,7 +86,7 @@ public static final Long ${treeParentColumn_javaField_underlineCase.toUpperCase(
|
||||
#end
|
||||
#if($isStandardized == true)
|
||||
#if(!${column.primaryKey})
|
||||
@TableField("${column.columnName}")
|
||||
@TableField("${column.columnName}")
|
||||
#end
|
||||
#end
|
||||
private ${column.javaType} ${column.javaField};
|
||||
|
||||
@@ -55,7 +55,12 @@ public class ${subTable.className}DO extends BaseDO {
|
||||
#end
|
||||
*/
|
||||
#if (${column.primaryKey})##处理主键
|
||||
@TableId#if (${column.javaType} == 'String')(type = IdType.INPUT)#end
|
||||
@TableId#if (${column.javaType} == 'String')(type = IdType.INPUT)#else(type = IdType.ASSIGN_ID)#end
|
||||
#end
|
||||
#if($isStandardized == true)
|
||||
#if(!${column.primaryKey})
|
||||
@TableField("${column.columnName}")
|
||||
#end
|
||||
#end
|
||||
#if ($voType == 20)
|
||||
## 1. 处理 Swagger 注解
|
||||
|
||||
Reference in New Issue
Block a user