fixed:DO生成模板,当主键是String类型,模板有误

This commit is contained in:
hezhenhui 2022-05-13 09:59:35 +08:00
parent 190150d1f4
commit 93f6d4eaf1

View File

@ -30,7 +30,7 @@ public class ${table.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)#end
#end
private ${column.javaType} ${column.javaField};
#end