EX_ExaminationSubject.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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_ExaminationSubject
  16. /// </summary>
  17. public partial class EX_ExaminationSubject
  18. {
  19. public EX_ExaminationSubject()
  20. {
  21. this.ER_DegreeForeignLanguage = new HashSet<ER_DegreeForeignLanguage>();
  22. this.ER_LevelScore = new HashSet<ER_LevelScore>();
  23. this.ER_LevelSetting = new HashSet<ER_LevelSetting>();
  24. this.EX_ExaminationOpenControl = new HashSet<EX_ExaminationOpenControl>();
  25. this.EX_ExaminationRegistration = new HashSet<EX_ExaminationRegistration>();
  26. this.EX_ExaminationSubjectCollegeControl = new HashSet<EX_ExaminationSubjectCollegeControl>();
  27. }
  28. /// <summary>
  29. /// ExaminationSubjectID
  30. /// </summary>
  31. public System.Guid ExaminationSubjectID { get; set; }
  32. /// <summary>
  33. /// ExaminationTypeID
  34. /// </summary>
  35. public Nullable<System.Guid> ExaminationTypeID { get; set; }
  36. /// <summary>
  37. /// SchoolyearID
  38. /// </summary>
  39. public Nullable<System.Guid> SchoolyearID { get; set; }
  40. /// <summary>
  41. /// ExaminationFormID
  42. /// </summary>
  43. public Nullable<int> ExaminationFormID { get; set; }
  44. /// <summary>
  45. /// Name
  46. /// </summary>
  47. public string Name { get; set; }
  48. /// <summary>
  49. /// PreposeSubjectID
  50. /// </summary>
  51. public Nullable<System.Guid> PreposeSubjectID { get; set; }
  52. /// <summary>
  53. /// PreposeScoreLimit
  54. /// </summary>
  55. public Nullable<decimal> PreposeScoreLimit { get; set; }
  56. /// <summary>
  57. /// ExaminationDate
  58. /// </summary>
  59. public Nullable<System.DateTime> ExaminationDate { get; set; }
  60. /// <summary>
  61. /// PeopleNumLimit
  62. /// </summary>
  63. public Nullable<int> PeopleNumLimit { get; set; }
  64. /// <summary>
  65. /// Cost
  66. /// </summary>
  67. public Nullable<decimal> Cost { get; set; }
  68. /// <summary>
  69. /// Remark
  70. /// </summary>
  71. public string Remark { get; set; }
  72. /// <summary>
  73. /// RecordStatus
  74. /// </summary>
  75. public Nullable<int> RecordStatus { get; set; }
  76. /// <summary>
  77. /// CreateTime
  78. /// </summary>
  79. public Nullable<System.DateTime> CreateTime { get; set; }
  80. /// <summary>
  81. /// CreateUserID
  82. /// </summary>
  83. public Nullable<System.Guid> CreateUserID { get; set; }
  84. /// <summary>
  85. /// ModifyUserID
  86. /// </summary>
  87. public Nullable<System.Guid> ModifyUserID { get; set; }
  88. /// <summary>
  89. /// ModifyTime
  90. /// </summary>
  91. public Nullable<System.DateTime> ModifyTime { get; set; }
  92. /// <summary>
  93. /// CF_Schoolyear
  94. /// </summary>
  95. public virtual CF_Schoolyear CF_Schoolyear { get; set; }
  96. /// <summary>
  97. /// ER_DegreeForeignLanguage
  98. /// </summary>
  99. public virtual HashSet<ER_DegreeForeignLanguage> ER_DegreeForeignLanguage { get; set; }
  100. /// <summary>
  101. /// ER_LevelScore
  102. /// </summary>
  103. public virtual HashSet<ER_LevelScore> ER_LevelScore { get; set; }
  104. /// <summary>
  105. /// ER_LevelSetting
  106. /// </summary>
  107. public virtual HashSet<ER_LevelSetting> ER_LevelSetting { get; set; }
  108. /// <summary>
  109. /// EX_ExaminationOpenControl
  110. /// </summary>
  111. public virtual HashSet<EX_ExaminationOpenControl> EX_ExaminationOpenControl { get; set; }
  112. /// <summary>
  113. /// EX_ExaminationRegistration
  114. /// </summary>
  115. public virtual HashSet<EX_ExaminationRegistration> EX_ExaminationRegistration { get; set; }
  116. /// <summary>
  117. /// EX_ExaminationType
  118. /// </summary>
  119. public virtual EX_ExaminationType EX_ExaminationType { get; set; }
  120. /// <summary>
  121. /// EX_ExaminationSubjectCollegeControl
  122. /// </summary>
  123. public virtual HashSet<EX_ExaminationSubjectCollegeControl> EX_ExaminationSubjectCollegeControl { get; set; }
  124. }
  125. }