using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_PDT_ServiceByPlanSpec")] public partial class SETB_PDT_ServiceByPlanSpec : ModelContext { public SETB_PDT_ServiceByPlanSpec() { } /// /// 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 /// public string Guid { get; set; } public const string CN_GUID = "Guid"; /// /// Desc: /// Default: /// Nullable:True /// public string Spec { get; set; } public const string CN_SPEC = "Spec"; } }