using System; using System.Collections.Generic; using System.Text; using SqlSugar; namespace WCS.Data.Models { public class WCS_DICTIONARY { [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string DIC_CODE { get; set; } public string DIC_NAME { get; set; } public string DIC_PARENT_CODE { get; set; } public int DIC_SORT { get; set; } public string DIC_REMARK { get; set; } public string DIC_ADDUSERNO { get; set; } public DateTime DIC_ADDDATETIME { get; set; } public string DIC_EDITUSERNO { get; set; } public DateTime DIC_EDITDATETIME { get; set; } public int DIC_STATUS { get; set; } public bool DIC_IS_DELETE { get; set; } } }