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.

54 lines
1.3 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_ServiceByPlanSpec")]
  11. public partial class SETB_PDT_ServiceByPlanSpec : ModelContext
  12. {
  13. public SETB_PDT_ServiceByPlanSpec()
  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. public string Guid { get; set; }
  38. public const string CN_GUID = "Guid";
  39. /// <summary>
  40. /// Desc:
  41. /// Default:
  42. /// Nullable:True
  43. /// </summary>
  44. public string Spec { get; set; }
  45. public const string CN_SPEC = "Spec";
  46. }
  47. }