using SqlSugar; using WIDESEAWCS_Core.DB.Models; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models; /// /// 系统配置表 /// [SugarTable("Sys_Config", "系统配置表"), MultiTenant] public class Sys_Config : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 配置键 /// [SugarColumn(ColumnDescription = "配置键", Length = 255, IsNullable = false)] public string ConfigKey { get; set; } /// /// 配置值 /// [SugarColumn(ColumnDescription = "配置值", IsNullable = false, ColumnDataType = "text")] public string ConfigValue { get; set; } /// /// 分类 /// [SugarColumn(ColumnDescription = "分类", Length = 255, IsNullable = false)] public string Category { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 255, IsNullable = true)] public string Remark { get; set; } /// /// 排序码 /// [SugarColumn(ColumnDescription = "排序码", IsNullable = true)] public int? SortCode { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", Length = 20, IsNullable = true)] public string Status { get; set; } }