You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Linq; using System.Text; using SqlSugar;
namespace Entity.Sugar { ///<summary>
///
///</summary>
[SugarTable("SETB_PDT_ServiceByPlan")] public partial class SETB_PDT_ServiceByPlan : ModelContext { public SETB_PDT_ServiceByPlan() {
} /// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)] public string ServiceID { get; set; } public const string CN_SERVICEID = "ServiceID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)] public string PlanID { get; set; } public const string CN_PLANID = "PlanID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)] public string LangID { get; set; } public const string CN_LANGID = "LangID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string PlanName { get; set; } public const string CN_PLANNAME = "PlanName";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string PictureID { get; set; } public const string CN_PICTUREID = "PictureID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CusPlanFlag { get; set; } public const string CN_CUSPLANFLAG = "CusPlanFlag";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CusPlanName { get; set; } public const string CN_CUSPLANNAME = "CusPlanName";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string PlanOrderQuestions { get; set; } public const string CN_PLANORDERQUESTIONS = "PlanOrderQuestions";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string PlanCusName { get; set; } public const string CN_PLANCUSNAME = "PlanCusName";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string PlanSpec { get; set; } public const string CN_PLANSPEC = "PlanSpec";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string PlanPricingAndInventory { get; set; } public const string CN_PLANPRICINGANDINVENTORY = "PlanPricingAndInventory"; /// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CreateUser { get; set; } public const string CN_CREATEUSER = "CreateUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string ModifyUser { get; set; } public const string CN_MODIFYUSER = "ModifyUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? ModifyDate { get; set; } public const string CN_MODIFYDATE = "ModifyDate";
} }
|