using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_CMS_ExhibInfo_Description")] public partial class SETB_CMS_ExhibInfo_Description : ModelContext { public SETB_CMS_ExhibInfo_Description() { } /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = true, IsIdentity = true)] [SugarColumn(IsPrimaryKey = true)] public string DescriptionID { get; set; } public const string CN_DESCRIPTIONID = "DescriptionID"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = false)] public string ExhibInfoID { get; set; } public const string CN_EXHIBINFOID = "ExhibInfoID"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = false)] public string LanguageID { get; set; } public const string CN_LANGUAGEID = "LanguageID"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = false)] public byte[] Logo { get; set; } public const string CN_LOGO = "Logo"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = false)] public string Intro { get; set; } public const string CN_INTRO = "Intro"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = false)] public string Profile { get; set; } public const string CN_PROFILE = "Profile"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = false)] public string Detail { get; set; } public const string CN_DETAIL = "Detail"; /// /// 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"; /// /// Desc:Y摸Τ N摸礚 /// Default: /// Nullable:True /// public string Effective { get; set; } public const string CN_EFFECTIVE = "Effective"; /// /// Desc:Y埃 Nゼ埃 /// Default:N /// Nullable:True /// public string DelStatus { get; set; } public const string CN_DELSTATUS = "DelStatus"; /// /// Desc: /// Default: /// Nullable:True /// public int? OrderByValue { get; set; } public const string CN_ORDERBYVALUE = "OrderByValue"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsIdentity = true)] public string OrgID { get; set; } public const string CN_ORGID = "OrgID"; } }