From fee474e03d9963e25ccd084296683d363f21885e Mon Sep 17 00:00:00 2001 From: xuxin <15279969124@163.com> Date: Tue, 24 Mar 2026 20:46:45 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=8A=80=E8=83=BD?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E5=85=B3=E8=81=94=E8=A1=A8=E6=94=B9=E9=9B=AA?= =?UTF-8?q?=E8=8A=B1id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/org/jiayunet/pojo/po/UserProfileSkillTagRelation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/src/main/java/org/jiayunet/pojo/po/UserProfileSkillTagRelation.java b/manager/src/main/java/org/jiayunet/pojo/po/UserProfileSkillTagRelation.java index 0d098df..2f662c9 100644 --- a/manager/src/main/java/org/jiayunet/pojo/po/UserProfileSkillTagRelation.java +++ b/manager/src/main/java/org/jiayunet/pojo/po/UserProfileSkillTagRelation.java @@ -16,7 +16,7 @@ import java.time.Instant; @TableName(value = "bg_user_profile_skill_tag_relation") public class UserProfileSkillTagRelation { - @TableId(type = IdType.AUTO) + @TableId(type = IdType.ASSIGN_ID) private Long id; /** 用户ID */ From 3fdbff30fb5bd1c31965a054d695378958bec3a9 Mon Sep 17 00:00:00 2001 From: xuxin <15279969124@163.com> Date: Wed, 25 Mar 2026 17:39:56 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=B2=97=E4=BD=8D=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=85=B3=E9=94=AE=E8=AF=8D=E6=9F=A5=E8=AF=A2=E8=A1=A8=E5=90=8D?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/src/main/resources/mapper/JobMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/src/main/resources/mapper/JobMapper.xml b/manager/src/main/resources/mapper/JobMapper.xml index 774ddc0..e6a86f7 100644 --- a/manager/src/main/resources/mapper/JobMapper.xml +++ b/manager/src/main/resources/mapper/JobMapper.xml @@ -64,7 +64,7 @@ AND ( - c.title like concat("%",#{keyword},"%") + j.title like concat("%",#{keyword},"%") or c.name like concat("%",#{keyword},"%") )