HB_JuniorSpecialtyStudentCount.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. /// HB_JuniorSpecialtyStudentCount
  16. /// </summary>
  17. public partial class HB_JuniorSpecialtyStudentCount
  18. {
  19. public HB_JuniorSpecialtyStudentCount()
  20. {
  21. this.HB_JuniorSpecialtyStudentCountDetail = new HashSet<HB_JuniorSpecialtyStudentCountDetail>();
  22. }
  23. /// <summary>
  24. /// JuniorSpecialtyStudentCountID
  25. /// </summary>
  26. public System.Guid JuniorSpecialtyStudentCountID { get; set; }
  27. /// <summary>
  28. /// Year
  29. /// </summary>
  30. public Nullable<int> Year { get; set; }
  31. /// <summary>
  32. /// Sex
  33. /// </summary>
  34. public Nullable<int> Sex { get; set; }
  35. /// <summary>
  36. /// EducationTypeID
  37. /// </summary>
  38. public Nullable<int> EducationTypeID { get; set; }
  39. /// <summary>
  40. /// LearningformID
  41. /// </summary>
  42. public Nullable<int> LearningformID { get; set; }
  43. /// <summary>
  44. /// StandardID
  45. /// </summary>
  46. public Nullable<int> StandardID { get; set; }
  47. /// <summary>
  48. /// IsTeacherIdentification
  49. /// </summary>
  50. public Nullable<bool> IsTeacherIdentification { get; set; }
  51. /// <summary>
  52. /// LearnSystem
  53. /// </summary>
  54. public Nullable<decimal> LearnSystem { get; set; }
  55. /// <summary>
  56. /// GraduationCount
  57. /// </summary>
  58. public Nullable<int> GraduationCount { get; set; }
  59. /// <summary>
  60. /// RecruitCount
  61. /// </summary>
  62. public Nullable<int> RecruitCount { get; set; }
  63. /// <summary>
  64. /// PlanGraduationCount
  65. /// </summary>
  66. public Nullable<int> PlanGraduationCount { get; set; }
  67. /// <summary>
  68. /// GraduatingCount
  69. /// </summary>
  70. public Nullable<int> GraduatingCount { get; set; }
  71. /// <summary>
  72. /// SpringRecruitCount
  73. /// </summary>
  74. public Nullable<int> SpringRecruitCount { get; set; }
  75. /// <summary>
  76. /// PreppyCount
  77. /// </summary>
  78. public Nullable<int> PreppyCount { get; set; }
  79. /// <summary>
  80. /// RecordStatus
  81. /// </summary>
  82. public Nullable<int> RecordStatus { get; set; }
  83. /// <summary>
  84. /// CreateUserID
  85. /// </summary>
  86. public Nullable<System.Guid> CreateUserID { get; set; }
  87. /// <summary>
  88. /// CreateTime
  89. /// </summary>
  90. public Nullable<System.DateTime> CreateTime { get; set; }
  91. /// <summary>
  92. /// ModifyUserID
  93. /// </summary>
  94. public Nullable<System.Guid> ModifyUserID { get; set; }
  95. /// <summary>
  96. /// ModifyTime
  97. /// </summary>
  98. public Nullable<System.DateTime> ModifyTime { get; set; }
  99. /// <summary>
  100. /// HB_JuniorSpecialtyStudentCountDetail
  101. /// </summary>
  102. public virtual HashSet<HB_JuniorSpecialtyStudentCountDetail> HB_JuniorSpecialtyStudentCountDetail { get; set; }
  103. }
  104. }