From ef1eb37af5dbd14d646945342541f4f9a0da5e36 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Fri, 23 Jan 2026 17:00:20 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E4=BF=A1=E6=81=AF=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E5=A2=9E=E5=8A=A0=E9=80=BB=E8=BE=91=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E6=B3=A8=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/infra/database/rds/entity/user/user/AuthType.java | 6 ++---- .../other/infra/database/rds/entity/user/user/BaseInfo.java | 6 ++---- .../infra/database/rds/entity/user/user/MobileAuth.java | 6 ++---- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/AuthType.java b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/AuthType.java index dbb63884..b91257de 100644 --- a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/AuthType.java +++ b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/AuthType.java @@ -1,9 +1,6 @@ package com.red.circle.other.infra.database.rds.entity.user.user; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.*; import com.red.circle.framework.mybatis.entity.TimestampBaseEntity; import java.io.Serial; import lombok.Data; @@ -55,6 +52,7 @@ public class AuthType extends TimestampBaseEntity { * 0.未删除 1.已删除 */ @TableField("is_del") + @TableLogic private Boolean del; } diff --git a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/BaseInfo.java b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/BaseInfo.java index e0b3ebbe..f679659c 100644 --- a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/BaseInfo.java +++ b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/BaseInfo.java @@ -1,9 +1,6 @@ package com.red.circle.other.infra.database.rds.entity.user.user; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.*; import com.red.circle.framework.mybatis.entity.TimestampBaseEntity; import java.io.Serial; import java.sql.Timestamp; @@ -148,6 +145,7 @@ public class BaseInfo extends TimestampBaseEntity { * 0.未删除 1.已删除. */ @TableField("is_del") + @TableLogic private Boolean del; /** diff --git a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/MobileAuth.java b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/MobileAuth.java index 482b3fe1..830b025a 100644 --- a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/MobileAuth.java +++ b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/rds/entity/user/user/MobileAuth.java @@ -1,9 +1,6 @@ package com.red.circle.other.infra.database.rds.entity.user.user; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.*; import com.red.circle.framework.mybatis.entity.TimestampBaseEntity; import java.io.Serial; import lombok.Data; @@ -61,6 +58,7 @@ public class MobileAuth extends TimestampBaseEntity { * 0.未删除 1.已删除. */ @TableField("is_del") + @TableLogic private Boolean del;