using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_PDT_ServiceBySuitPlace")] public partial class SETB_PDT_ServiceBySuitPlace : ModelContext { public SETB_PDT_ServiceBySuitPlace() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string LangID { get; set; } public const string CN_LANGID = "LangID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Guid { get; set; } public const string CN_GUID = "Guid"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string ServiceID { get; set; } public const string CN_SERVICEID = "ServiceID"; /// /// 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 CityID { get; set; } public const string CN_CITYID = "CityID"; } }