using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_PDT_ServiceByPlan")] public partial class SETB_PDT_ServiceByPlan : ModelContext { public SETB_PDT_ServiceByPlan() { } /// /// 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 LangID { get; set; } public const string CN_LANGID = "LangID"; /// /// Desc: /// Default: /// Nullable:True /// public string PlanName { get; set; } public const string CN_PLANNAME = "PlanName"; /// /// Desc: /// Default: /// Nullable:True /// public string PictureID { get; set; } public const string CN_PICTUREID = "PictureID"; /// /// Desc: /// Default: /// Nullable:True /// public string CusPlanFlag { get; set; } public const string CN_CUSPLANFLAG = "CusPlanFlag"; /// /// Desc: /// Default: /// Nullable:True /// public string CusPlanName { get; set; } public const string CN_CUSPLANNAME = "CusPlanName"; /// /// Desc: /// Default: /// Nullable:True /// public string PlanOrderQuestions { get; set; } public const string CN_PLANORDERQUESTIONS = "PlanOrderQuestions"; /// /// Desc: /// Default: /// Nullable:True /// public string PlanCusName { get; set; } public const string CN_PLANCUSNAME = "PlanCusName"; /// /// Desc: /// Default: /// Nullable:True /// public string PlanSpec { get; set; } public const string CN_PLANSPEC = "PlanSpec"; /// /// Desc: /// Default: /// Nullable:True /// public string PlanPricingAndInventory { get; set; } public const string CN_PLANPRICINGANDINVENTORY = "PlanPricingAndInventory"; /// /// 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"; } }