EX_ExaminationProject.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMIS.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. /// <summary>
  15. /// EX_ExaminationProject
  16. /// </summary>
  17. public partial class EX_ExaminationProject
  18. {
  19. public EX_ExaminationProject()
  20. {
  21. this.ER_CertisfierDistribute = new HashSet<ER_CertisfierDistribute>();
  22. this.ER_LevelSetting = new HashSet<ER_LevelSetting>();
  23. this.ER_ProjectScore = new HashSet<ER_ProjectScore>();
  24. this.EX_ExaminationBatchProject = new HashSet<EX_ExaminationBatchProject>();
  25. this.EX_ExaminationProjectFee = new HashSet<EX_ExaminationProjectFee>();
  26. this.EX_ExaminationProjectSubject = new HashSet<EX_ExaminationProjectSubject>();
  27. }
  28. /// <summary>
  29. /// ExaminationProjectID
  30. /// </summary>
  31. public System.Guid ExaminationProjectID { get; set; }
  32. /// <summary>
  33. /// ExaminationTypeID
  34. /// </summary>
  35. public Nullable<System.Guid> ExaminationTypeID { get; set; }
  36. /// <summary>
  37. /// ExaminationLevelID
  38. /// </summary>
  39. public Nullable<int> ExaminationLevelID { get; set; }
  40. /// <summary>
  41. /// Name
  42. /// </summary>
  43. public string Name { get; set; }
  44. /// <summary>
  45. /// PreposeProjectID
  46. /// </summary>
  47. public Nullable<System.Guid> PreposeProjectID { get; set; }
  48. /// <summary>
  49. /// IssuedByID
  50. /// </summary>
  51. public Nullable<int> IssuedByID { get; set; }
  52. /// <summary>
  53. /// Remark
  54. /// </summary>
  55. public string Remark { get; set; }
  56. /// <summary>
  57. /// RecordStatus
  58. /// </summary>
  59. public Nullable<int> RecordStatus { get; set; }
  60. /// <summary>
  61. /// CreateUserID
  62. /// </summary>
  63. public Nullable<System.Guid> CreateUserID { get; set; }
  64. /// <summary>
  65. /// CreateTime
  66. /// </summary>
  67. public Nullable<System.DateTime> CreateTime { get; set; }
  68. /// <summary>
  69. /// ModifyUserID
  70. /// </summary>
  71. public Nullable<System.Guid> ModifyUserID { get; set; }
  72. /// <summary>
  73. /// ModifyTime
  74. /// </summary>
  75. public Nullable<System.DateTime> ModifyTime { get; set; }
  76. /// <summary>
  77. /// ER_CertisfierDistribute
  78. /// </summary>
  79. public virtual HashSet<ER_CertisfierDistribute> ER_CertisfierDistribute { get; set; }
  80. /// <summary>
  81. /// ER_LevelSetting
  82. /// </summary>
  83. public virtual HashSet<ER_LevelSetting> ER_LevelSetting { get; set; }
  84. /// <summary>
  85. /// ER_ProjectScore
  86. /// </summary>
  87. public virtual HashSet<ER_ProjectScore> ER_ProjectScore { get; set; }
  88. /// <summary>
  89. /// EX_ExaminationBatchProject
  90. /// </summary>
  91. public virtual HashSet<EX_ExaminationBatchProject> EX_ExaminationBatchProject { get; set; }
  92. /// <summary>
  93. /// EX_ExaminationProjectFee
  94. /// </summary>
  95. public virtual HashSet<EX_ExaminationProjectFee> EX_ExaminationProjectFee { get; set; }
  96. /// <summary>
  97. /// EX_ExaminationProjectSubject
  98. /// </summary>
  99. public virtual HashSet<EX_ExaminationProjectSubject> EX_ExaminationProjectSubject { get; set; }
  100. /// <summary>
  101. /// EX_ExaminationType
  102. /// </summary>
  103. public virtual EX_ExaminationType EX_ExaminationType { get; set; }
  104. }
  105. }