WMS
dengjunjie
2024-10-17 212af0b4bbc0f11e0b552d1bc3a4a73e52127e02
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_DictionaryList.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,57 @@
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; }
    }
}