wip: 临时提交

开发部分系统配置
This commit is contained in:
胡少翔
2024-07-29 17:12:43 +08:00
parent 003e125bfb
commit 465b9763c2
11 changed files with 475 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
package com.youlai.system.model.entity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.Builder;
import java.io.Serializable;
import com.youlai.system.common.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* 系统配置 实体
*
* @author Theo
* @since 2024-07-29 11:17:26
*/
@Data
@TableName("sys_config")
@Schema(description = "系统配置")
public class SysConfig extends BaseEntity {
@Schema(description = "配置名称")
private String sysName;
@Schema(description = "配置key")
private String sysKey;
@Schema(description = "配置值")
private String sysValue;
@Schema(description = "描述、备注")
private String remark;
@Schema(description = "创建人ID")
@TableField(fill = FieldFill.INSERT)
private Long createBy;
@Schema(description = "更新人ID")
@TableField(fill = FieldFill.UPDATE)
private Long updateBy;
@TableLogic(value = "0", delval = "1")
private Integer isDeleted;
}