CF_Facultymajor.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. /// CF_Facultymajor
  16. /// </summary>
  17. public partial class CF_Facultymajor
  18. {
  19. public CF_Facultymajor()
  20. {
  21. this.CF_Grademajor = new HashSet<CF_Grademajor>();
  22. this.DQP_SOCTemplate = new HashSet<DQP_SOCTemplate>();
  23. this.EX_ExaminationSubjectCollegeControl = new HashSet<EX_ExaminationSubjectCollegeControl>();
  24. this.EX_ExaminationSubjectCountLimit = new HashSet<EX_ExaminationSubjectCountLimit>();
  25. this.HB_FacultymajorStudentCount = new HashSet<HB_FacultymajorStudentCount>();
  26. }
  27. /// <summary>
  28. /// FacultymajorID
  29. /// </summary>
  30. public System.Guid FacultymajorID { get; set; }
  31. /// <summary>
  32. /// CollegeID
  33. /// </summary>
  34. public Nullable<System.Guid> CollegeID { get; set; }
  35. /// <summary>
  36. /// Code
  37. /// </summary>
  38. public string Code { get; set; }
  39. /// <summary>
  40. /// Name
  41. /// </summary>
  42. public string Name { get; set; }
  43. /// <summary>
  44. /// Abbreviation
  45. /// </summary>
  46. public string Abbreviation { get; set; }
  47. /// <summary>
  48. /// EnglishName
  49. /// </summary>
  50. public string EnglishName { get; set; }
  51. /// <summary>
  52. /// StandardID
  53. /// </summary>
  54. public Nullable<int> StandardID { get; set; }
  55. /// <summary>
  56. /// EducationID
  57. /// </summary>
  58. public Nullable<int> EducationID { get; set; }
  59. /// <summary>
  60. /// LearningformID
  61. /// </summary>
  62. public Nullable<int> LearningformID { get; set; }
  63. /// <summary>
  64. /// LearnSystem
  65. /// </summary>
  66. public Nullable<decimal> LearnSystem { get; set; }
  67. /// <summary>
  68. /// ScienceclassID
  69. /// </summary>
  70. public Nullable<int> ScienceclassID { get; set; }
  71. /// <summary>
  72. /// LearningstyleID
  73. /// </summary>
  74. public Nullable<int> LearningstyleID { get; set; }
  75. /// <summary>
  76. /// LearnPositionID
  77. /// </summary>
  78. public Nullable<int> LearnPositionID { get; set; }
  79. /// <summary>
  80. /// TeacherIdentification
  81. /// </summary>
  82. public string TeacherIdentification { get; set; }
  83. /// <summary>
  84. /// SetTime
  85. /// </summary>
  86. public Nullable<System.DateTime> SetTime { get; set; }
  87. /// <summary>
  88. /// Remark
  89. /// </summary>
  90. public string Remark { get; set; }
  91. /// <summary>
  92. /// RecordStatus
  93. /// </summary>
  94. public Nullable<int> RecordStatus { get; set; }
  95. /// <summary>
  96. /// CreateUserID
  97. /// </summary>
  98. public Nullable<System.Guid> CreateUserID { get; set; }
  99. /// <summary>
  100. /// CreateTime
  101. /// </summary>
  102. public Nullable<System.DateTime> CreateTime { get; set; }
  103. /// <summary>
  104. /// ModifyUserID
  105. /// </summary>
  106. public Nullable<System.Guid> ModifyUserID { get; set; }
  107. /// <summary>
  108. /// ModifyTime
  109. /// </summary>
  110. public Nullable<System.DateTime> ModifyTime { get; set; }
  111. /// <summary>
  112. /// CF_College
  113. /// </summary>
  114. public virtual CF_College CF_College { get; set; }
  115. /// <summary>
  116. /// CF_Grademajor
  117. /// </summary>
  118. public virtual HashSet<CF_Grademajor> CF_Grademajor { get; set; }
  119. /// <summary>
  120. /// DQP_SOCTemplate
  121. /// </summary>
  122. public virtual HashSet<DQP_SOCTemplate> DQP_SOCTemplate { get; set; }
  123. /// <summary>
  124. /// EX_ExaminationSubjectCollegeControl
  125. /// </summary>
  126. public virtual HashSet<EX_ExaminationSubjectCollegeControl> EX_ExaminationSubjectCollegeControl { get; set; }
  127. /// <summary>
  128. /// EX_ExaminationSubjectCountLimit
  129. /// </summary>
  130. public virtual HashSet<EX_ExaminationSubjectCountLimit> EX_ExaminationSubjectCountLimit { get; set; }
  131. /// <summary>
  132. /// HB_FacultymajorStudentCount
  133. /// </summary>
  134. public virtual HashSet<HB_FacultymajorStudentCount> HB_FacultymajorStudentCount { get; set; }
  135. }
  136. }