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.

64 lines
1.6 KiB

  1. using System;
  2. using System.Linq;
  3. using System.Text;
  4. using SqlSugar;
  5. namespace Entity.Sugar
  6. {
  7. ///<summary>
  8. ///
  9. ///</summary>
  10. [SugarTable("SETB_PDT_ServiceByPlanDestination")]
  11. public partial class SETB_PDT_ServiceByPlanDestination : ModelContext
  12. {
  13. public SETB_PDT_ServiceByPlanDestination()
  14. {
  15. }
  16. /// <summary>
  17. /// Desc:
  18. /// Default:
  19. /// Nullable:False
  20. /// </summary>
  21. [SugarColumn(IsPrimaryKey = true)]
  22. public string ServiceID { get; set; }
  23. public const string CN_SERVICEID = "ServiceID";
  24. /// <summary>
  25. /// Desc:
  26. /// Default:
  27. /// Nullable:False
  28. /// </summary>
  29. [SugarColumn(IsPrimaryKey = true)]
  30. public string PlanID { get; set; }
  31. public const string CN_PLANID = "PlanID";
  32. /// <summary>
  33. /// Desc:
  34. /// Default:
  35. /// Nullable:False
  36. /// </summary>
  37. [SugarColumn(IsPrimaryKey = true)]
  38. public string Guid { get; set; }
  39. public const string CN_GUID = "Guid";
  40. /// <summary>
  41. /// Desc:
  42. /// Default:
  43. /// Nullable:True
  44. /// </summary>
  45. public string Destination { get; set; }
  46. public const string CN_DESTINATION = "Destination";
  47. /// <summary>
  48. /// Desc:
  49. /// Default:
  50. /// Nullable:True
  51. /// </summary>
  52. public DateTime? CreateDate { get; set; }
  53. public const string CN_CREATEDATE = "CreateDate";
  54. }
  55. }