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