using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_CMS_Exhibition")] public partial class SETB_CMS_Exhibition : ModelContext { public SETB_CMS_Exhibition() { } /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsPrimaryKey = true, IsIdentity = true)] [SugarColumn(IsPrimaryKey = true)] public string ExhibitionID { get; set; } public const string CN_EXHIBITIONID = "ExhibitionID"; /// /// Desc: /// Default: /// Nullable:False /// public string AbbreviatedName { get; set; } public const string CN_ABBREVIATEDNAME = "AbbreviatedName"; /// /// Desc: /// Default: /// Nullable:False /// public string Website { get; set; } public const string CN_WEBSITE = "Website"; /// /// Desc: /// Default: /// Nullable:False /// public int RegionID { get; set; } public const string CN_REGIONID = "RegionID"; /// /// Desc: /// Default: /// Nullable:False /// public int CountryID { get; set; } public const string CN_COUNTRYID = "CountryID"; /// /// Desc: /// Default: /// Nullable:False /// public int CityID { get; set; } public const string CN_CITYID = "CityID"; /// /// Desc: /// Default: /// Nullable:False /// public string Location { get; set; } public const string CN_LOCATION = "Location"; /// /// Desc: /// Default: /// Nullable:False /// public string OrganizerID { get; set; } public const string CN_ORGANIZERID = "OrganizerID"; /// /// Desc: /// Default: /// Nullable:False /// public string Frequency { get; set; } public const string CN_FREQUENCY = "Frequency"; /// /// Desc: /// Default: /// Nullable:False /// public string Tags { get; set; } public const string CN_TAGS = "Tags"; /// /// Desc: /// Default: /// Nullable:False /// public string ExhibStatus { get; set; } public const string CN_EXHIBSTATUS = "ExhibStatus"; /// /// Desc: /// Default: /// Nullable:False /// public string MainCategoryID { get; set; } public const string CN_MAINCATEGORYID = "MainCategoryID"; /// /// Desc: /// Default: /// Nullable:False /// public string SubCategoryID { get; set; } public const string CN_SUBCATEGORYID = "SubCategoryID"; /// /// 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"; } }