using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { [SugarTable("OTB_CRM_SatisfactionCase")] public partial class OTB_CRM_SatisfactionCase : ModelContext { public OTB_CRM_SatisfactionCase() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public string SN { get; set; } public const string CN_SN = "SN"; /// /// Desc: /// Default: /// Nullable:True /// public string CaseName { get; set; } public const string CN_CaseName = "CaseName"; /// /// Desc: /// Default: /// Nullable:True /// public string ExhibitionNO { get; set; } public const string CN_ExhibitionNO = "ExhibitionNO"; /// /// Desc: /// Default: /// Nullable:True /// public string CreateUser { get; set; } public const string CN_CREATEUSER = "CreateUser"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate"; /// /// Desc: /// Default: /// Nullable:True /// public string ModifyUser { get; set; } public const string CN_MODIFYUSER = "ModifyUser"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? ModifyDate { get; set; } public const string CN_MODIFYDATE = "ModifyDate"; } }