using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_ORG_Organizer")] public partial class SETB_ORG_Organizer : ModelContext { public SETB_ORG_Organizer() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string OrganizerID { get; set; } public const string CN_ORGANIZERID = "OrganizerID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string LangType { get; set; } public const string CN_LANGTYPE = "LangType"; /// /// Desc: /// Default: /// Nullable:True /// public string Effective { get; set; } public const string CN_EFFECTIVE = "Effective"; /// /// Desc: /// Default: /// Nullable:True /// public string OrganizerName { get; set; } public const string CN_ORGANIZERNAME = "OrganizerName"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string OrgID { get; set; } public const string CN_ORGID = "OrgID"; /// /// Desc: /// Default: /// Nullable:True /// public string RegionID { get; set; } public const string CN_REGIONID = "RegionID"; /// /// Desc: /// Default: /// Nullable:True /// public string CountryID { get; set; } public const string CN_COUNTRYID = "CountryID"; /// /// Desc: /// Default: /// Nullable:True /// public string Telephone { get; set; } public const string CN_TELEPHONE = "Telephone"; /// /// Desc: /// Default: /// Nullable:True /// public string Email { get; set; } public const string CN_EMAIL = "Email"; /// /// Desc: /// Default: /// Nullable:True /// public string WebSite { get; set; } public const string CN_WEBSITE = "WebSite"; /// /// Desc: /// Default: /// Nullable:True /// public string Memo { get; set; } public const string CN_MEMO = "Memo"; /// /// 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"; //public string CityName { get; set; } //public string CountryName { get; set; } //public string RegionName { get; set; } //public string CountryID { get; set; } //public string RegionID { get; set; } } }