运营模块-逻辑山注解去掉

This commit is contained in:
attiya 2025-10-20 17:05:10 +08:00
parent 489527cd5f
commit 418babd19a
6 changed files with 0 additions and 8 deletions

View File

@ -56,7 +56,6 @@ public class EbikeDic implements Serializable {
@Column(onUpdateValue = "now()") @Column(onUpdateValue = "now()")
private LocalDateTime updateTime; private LocalDateTime updateTime;
@Column(isLogicDelete = true)
private Boolean isDeleted; private Boolean isDeleted;
@RelationOneToMany(selfField = "dicId",targetField = "dicId") @RelationOneToMany(selfField = "dicId",targetField = "dicId")

View File

@ -59,7 +59,6 @@ public class EbikeOperator implements Serializable {
@Column(onUpdateValue = "now()") @Column(onUpdateValue = "now()")
private LocalDateTime updateTime; private LocalDateTime updateTime;
@Column(isLogicDelete = true)
private Boolean isDeleted; private Boolean isDeleted;
} }

View File

@ -57,7 +57,6 @@ public class EbikeOperatorStaff implements Serializable {
@Column(onUpdateValue = "now()") @Column(onUpdateValue = "now()")
private LocalDateTime updateTime; private LocalDateTime updateTime;
@Column(isLogicDelete = true)
private Boolean isDeleted; private Boolean isDeleted;
private String contactPhone; private String contactPhone;

View File

@ -58,7 +58,6 @@ public class EbikePermission implements Serializable {
@Column(onUpdateValue = "now()") @Column(onUpdateValue = "now()")
private LocalDateTime updateTime; private LocalDateTime updateTime;
@Column(isLogicDelete = true)
private Boolean isDeleted; private Boolean isDeleted;
/** /**

View File

@ -2,7 +2,6 @@ package com.cdzy.staff.model.entity;
import com.mybatisflex.annotation.Column; import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType;
import com.mybatisflex.annotation.Table; import com.mybatisflex.annotation.Table;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
@ -46,7 +45,6 @@ public class EbikeRolePermission implements Serializable {
@Column(onUpdateValue = "now()") @Column(onUpdateValue = "now()")
private LocalDateTime updateTime; private LocalDateTime updateTime;
@Column(isLogicDelete = true)
private Boolean isDeleted; private Boolean isDeleted;
private Boolean isEmpower; private Boolean isEmpower;

View File

@ -2,7 +2,6 @@ package com.cdzy.staff.model.entity;
import com.mybatisflex.annotation.Column; import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType;
import com.mybatisflex.annotation.Table; import com.mybatisflex.annotation.Table;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
@ -46,7 +45,6 @@ public class EbikeStaffRole implements Serializable {
@Column(onUpdateValue = "now()") @Column(onUpdateValue = "now()")
private LocalDateTime updateTime; private LocalDateTime updateTime;
@Column(isLogicDelete = true)
private Boolean isDeleted; private Boolean isDeleted;
} }