CF_Specialty.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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_Specialty
  16. /// </summary>
  17. public partial class CF_Specialty
  18. {
  19. public CF_Specialty()
  20. {
  21. this.CF_CustomStandardSetting = new HashSet<CF_CustomStandardSetting>();
  22. this.CF_NewStudent = new HashSet<CF_NewStudent>();
  23. this.CF_RecruitSpecialty = new HashSet<CF_RecruitSpecialty>();
  24. this.CF_SpecialtyApply = new HashSet<CF_SpecialtyApply>();
  25. this.CF_SpecialtyClassSetting = new HashSet<CF_SpecialtyClassSetting>();
  26. this.EM_ExecutableFreeSelectionCouseSpecialty = new HashSet<EM_ExecutableFreeSelectionCouseSpecialty>();
  27. this.EM_FreeSelectionCouseApplySpecialty = new HashSet<EM_FreeSelectionCouseApplySpecialty>();
  28. this.EM_OptionalCoursePlan = new HashSet<EM_OptionalCoursePlan>();
  29. this.EM_SpecialtyCourse = new HashSet<EM_SpecialtyCourse>();
  30. this.EM_SpecialtyPlan = new HashSet<EM_SpecialtyPlan>();
  31. }
  32. /// <summary>
  33. /// SpecialtyID
  34. /// </summary>
  35. public System.Guid SpecialtyID { get; set; }
  36. /// <summary>
  37. /// StandardID
  38. /// </summary>
  39. public Nullable<int> StandardID { get; set; }
  40. /// <summary>
  41. /// EducationID
  42. /// </summary>
  43. public Nullable<int> EducationID { get; set; }
  44. /// <summary>
  45. /// LearningformID
  46. /// </summary>
  47. public Nullable<int> LearningformID { get; set; }
  48. /// <summary>
  49. /// LearnSystem
  50. /// </summary>
  51. public Nullable<decimal> LearnSystem { get; set; }
  52. /// <summary>
  53. /// ScienceclassID
  54. /// </summary>
  55. public Nullable<int> ScienceclassID { get; set; }
  56. /// <summary>
  57. /// PropertyID
  58. /// </summary>
  59. public Nullable<int> PropertyID { get; set; }
  60. /// <summary>
  61. /// StandardTitle
  62. /// </summary>
  63. public Nullable<int> StandardTitle { get; set; }
  64. /// <summary>
  65. /// StandardLevel
  66. /// </summary>
  67. public Nullable<int> StandardLevel { 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. /// CreateUserID
  78. /// </summary>
  79. public Nullable<System.Guid> CreateUserID { get; set; }
  80. /// <summary>
  81. /// CreateTime
  82. /// </summary>
  83. public Nullable<System.DateTime> CreateTime { 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_CustomStandardSetting
  94. /// </summary>
  95. public virtual HashSet<CF_CustomStandardSetting> CF_CustomStandardSetting { get; set; }
  96. /// <summary>
  97. /// CF_NewStudent
  98. /// </summary>
  99. public virtual HashSet<CF_NewStudent> CF_NewStudent { get; set; }
  100. /// <summary>
  101. /// CF_RecruitSpecialty
  102. /// </summary>
  103. public virtual HashSet<CF_RecruitSpecialty> CF_RecruitSpecialty { get; set; }
  104. /// <summary>
  105. /// CF_SpecialtyApply
  106. /// </summary>
  107. public virtual HashSet<CF_SpecialtyApply> CF_SpecialtyApply { get; set; }
  108. /// <summary>
  109. /// CF_SpecialtyClassSetting
  110. /// </summary>
  111. public virtual HashSet<CF_SpecialtyClassSetting> CF_SpecialtyClassSetting { get; set; }
  112. /// <summary>
  113. /// EM_ExecutableFreeSelectionCouseSpecialty
  114. /// </summary>
  115. public virtual HashSet<EM_ExecutableFreeSelectionCouseSpecialty> EM_ExecutableFreeSelectionCouseSpecialty { get; set; }
  116. /// <summary>
  117. /// EM_FreeSelectionCouseApplySpecialty
  118. /// </summary>
  119. public virtual HashSet<EM_FreeSelectionCouseApplySpecialty> EM_FreeSelectionCouseApplySpecialty { get; set; }
  120. /// <summary>
  121. /// EM_OptionalCoursePlan
  122. /// </summary>
  123. public virtual HashSet<EM_OptionalCoursePlan> EM_OptionalCoursePlan { get; set; }
  124. /// <summary>
  125. /// EM_SpecialtyCourse
  126. /// </summary>
  127. public virtual HashSet<EM_SpecialtyCourse> EM_SpecialtyCourse { get; set; }
  128. /// <summary>
  129. /// EM_SpecialtyPlan
  130. /// </summary>
  131. public virtual HashSet<EM_SpecialtyPlan> EM_SpecialtyPlan { get; set; }
  132. }
  133. }