From 6acc718e0f3608c08584526d7c7e8523c1bd99ca Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 09 一月 2025 11:43:07 +0800 Subject: [PATCH] 用户列表可通过昵称搜索、获取任务表单时无表单数据也返回节点信息 --- system/src/main/java/com/ycl/system/domain/base/AbsEntity.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/system/src/main/java/com/ycl/system/domain/base/AbsEntity.java b/system/src/main/java/com/ycl/system/domain/base/AbsEntity.java index e2a9f06..3f3cca0 100644 --- a/system/src/main/java/com/ycl/system/domain/base/AbsEntity.java +++ b/system/src/main/java/com/ycl/system/domain/base/AbsEntity.java @@ -17,8 +17,8 @@ private static final long serialVersionUID = 1L; - @TableId(value = "id", type = IdType.ASSIGN_ID) - private Integer id; + @TableId(value = "id", type = IdType.AUTO) + private Long id; /** 鍒涘缓鏃堕棿 */ @TableField(value = "gmt_create", fill = FieldFill.INSERT) -- Gitblit v1.8.0