using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_PDT_ServiceByPlanPricingAndInventory")] public partial class SETB_PDT_ServiceByPlanPricingAndInventory : ModelContext { public SETB_PDT_ServiceByPlanPricingAndInventory() { } /// /// 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:False /// [SugarColumn(IsPrimaryKey = true)] public string PlanID { get; set; } public const string CN_PLANID = "PlanID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string SpecID { get; set; } public const string CN_SPECID = "SpecID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string DestinationID { get; set; } public const string CN_DESTINATIONID = "DestinationID"; /// /// Desc: /// Default: /// Nullable:True /// public int? UnitPrice { get; set; } public const string CN_UNITPRICE = "UnitPrice"; /// /// Desc: /// Default: /// Nullable:True /// public int? InterbankPrice { get; set; } public const string CN_INTERBANKPRICE = "InterbankPrice"; /// /// Desc: /// Default: /// Nullable:True /// public string Currency { get; set; } public const string CN_CURRENCY = "Currency"; /// /// Desc: /// Default: /// Nullable:True /// public int? Inventory { get; set; } public const string CN_INVENTORY = "Inventory"; } }