¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.DB.Models; |
| | | using SqlSugar; |
| | | using WIDESEA_Core.Tenants; |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | [SugarTable("Sys_DictionaryList", "åå
¸æç»"), MultiTenant] |
| | | public class Sys_DictionaryList : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// åå
¸å表ID |
| | | /// </summary> |
| | | [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "åå
¸å表ID")] |
| | | public int DicListId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ°æ®æºText |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "æ°æ®æºText")] |
| | | public string DicName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ°æ®æºValue |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "æ°æ®æºValue")] |
| | | public string DicValue { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ°æ®æºID |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æ°æ®æºID")] |
| | | public int DicId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦å¯ç¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "æ¯å¦å¯ç¨")] |
| | | public byte? Enable { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æåºå· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "æåºå·")] |
| | | public int? OrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | } |
| | | } |