Merge branch 'refactor/notice' of https://gitee.com/youlaiorg/youlai-boot into refactor/notice

This commit is contained in:
ray
2024-10-03 08:06:44 +08:00
6 changed files with 49 additions and 13 deletions

View File

@@ -18,26 +18,39 @@ import lombok.EqualsAndHashCode;
@TableName("sys_config")
public class Config extends BaseEntity {
@Schema(description = "配置名称")
/**
* 配置名称
*/
private String configName;
@Schema(description = "配置键")
/**
* 配置键
*/
private String configKey;
@Schema(description = "配置值")
/**
* 配置值
*/
private String configValue;
@Schema(description = "描述、备注")
/**
* 描述、备注
*/
private String remark;
@Schema(description = "创建人ID")
@TableField(fill = FieldFill.INSERT)
/**
* 创建人ID
*/
private Long createBy;
@Schema(description = "更新人ID")
@TableField(fill = FieldFill.UPDATE)
/**
* 更新人ID
*/
private Long updateBy;
/**
* 逻辑删除标识(0-未删除 1-已删除)
*/
@TableLogic(value = "0", delval = "1")
private Integer isDeleted;

View File

@@ -1,5 +1,6 @@
package com.youlai.boot.system.model.entity;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import com.youlai.boot.common.base.BaseEntity;
import lombok.Getter;
@@ -56,4 +57,10 @@ public class Dept extends BaseEntity {
*/
private Long updateBy;
/**
* 逻辑删除标识(0-未删除 1-已删除)
*/
@TableLogic(value = "0", delval = "1")
private Integer isDeleted;
}