using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.DB.Models; using SqlSugar; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { [SugarTable("Sys_DictionaryList", "字典明细"), MultiTenant] public class Sys_DictionaryList : BaseEntity { /// /// 字典列表ID /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "字典列表ID")] public int DicListId { get; set; } /// /// 数据源Text /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "数据源Text")] public string DicName { get; set; } /// /// 数据源Value /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "数据源Value")] public string DicValue { get; set; } /// /// 数据源ID /// [SugarColumn(IsNullable = false, ColumnDescription = "数据源ID")] public int DicId { get; set; } /// /// 是否可用 /// [SugarColumn(IsNullable = true, ColumnDescription = "是否可用")] public byte? Enable { get; set; } /// /// 排序号 /// [SugarColumn(IsNullable = true, ColumnDescription = "排序号")] public int? OrderNo { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "备注")] public string Remark { get; set; } } }