using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_SYS_Country")] public partial class SETB_SYS_Country : ModelContext { public SETB_SYS_Country() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string CountryID { get; set; } public const string CN_COUNTRYID = "CountryID"; /// /// Desc: /// Default: /// Nullable:False /// public string CountryName { get; set; } public const string CN_COUNTRYNAME = "CountryName"; /// /// Desc: /// Default: /// Nullable:False /// public string Country_ENCode { get; set; } public const string CN_Country_ENCode = "Country_ENCode"; /// /// Desc: /// Default: /// Nullable:True /// public string CountrySlug { get; set; } public const string CN_COUNTRYSLUG = "CountrySlug"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string LangType { get; set; } public const string CN_LANGTYPE = "LangType"; /// /// 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 /// public string RegionID { get; set; } public const string CN_REGIONID = "RegionID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string OrgID { get; set; } public const string CN_ORGID = "OrgID"; } }