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.

68 lines
1.8 KiB

2 years ago
  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("OTB_OPM_ExhibitionsTransfer")]
  11. public partial class OTB_OPM_ExhibitionsTransfer : ModelContext
  12. {
  13. public OTB_OPM_ExhibitionsTransfer(){
  14. }
  15. /// <summary>
  16. /// Desc:
  17. /// Default:
  18. /// Nullable:False
  19. /// </summary>
  20. [SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
  21. public int SN {get;set;}
  22. public const string CN_SN = "SN";
  23. /// <summary>
  24. /// Desc:
  25. /// Default:
  26. /// Nullable:False
  27. /// </summary>
  28. public string OrgID {get;set;}
  29. public const string CN_ORGID = "OrgID";
  30. /// <summary>
  31. /// Desc:
  32. /// Default:
  33. /// Nullable:False
  34. /// </summary>
  35. public string PrjNO {get;set;}
  36. public const string CN_PRJNO = "PrjNO";
  37. /// <summary>
  38. /// Desc:
  39. /// Default:
  40. /// Nullable:True
  41. /// </summary>
  42. public string PrjName {get;set;}
  43. public const string CN_PRJNAME = "PrjName";
  44. /// <summary>
  45. /// Desc:
  46. /// Default:
  47. /// Nullable:False
  48. /// </summary>
  49. public string PrjCharger {get;set;}
  50. public const string CN_PRJCHARGER = "PrjCharger";
  51. /// <summary>
  52. /// Desc:
  53. /// Default:
  54. /// Nullable:False
  55. /// </summary>
  56. public string EndDate {get;set;}
  57. public const string CN_ENDDATE = "EndDate";
  58. }
  59. }