123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class HB_BachelorSpecialtyStudentCount
- {
- public HB_BachelorSpecialtyStudentCount()
- {
- this.HB_BachelorSpecialtyStudentCountDetail = new HashSet<HB_BachelorSpecialtyStudentCountDetail>();
- }
-
-
-
-
- public System.Guid BachelorSpecialtyStudentCountID { get; set; }
-
-
-
- public Nullable<int> Year { get; set; }
-
-
-
- public Nullable<int> Sex { get; set; }
-
-
-
- public Nullable<int> EducationTypeID { get; set; }
-
-
-
- public Nullable<int> LearningformID { get; set; }
-
-
-
- public Nullable<int> StandardID { get; set; }
-
-
-
- public Nullable<bool> IsTeacherIdentification { get; set; }
-
-
-
- public Nullable<decimal> LearnSystem { get; set; }
-
-
-
- public Nullable<int> GraduationCount { get; set; }
-
-
-
- public Nullable<int> DegreeCount { get; set; }
-
-
-
- public Nullable<int> RecruitCount { get; set; }
-
-
-
- public Nullable<int> PlanGraduationCount { get; set; }
-
-
-
- public Nullable<int> GraduatingCount { get; set; }
-
-
-
- public Nullable<int> SpringRecruitCount { get; set; }
-
-
-
- public Nullable<int> PreppyCount { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual HashSet<HB_BachelorSpecialtyStudentCountDetail> HB_BachelorSpecialtyStudentCountDetail { get; set; }
- }
- }
|