123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// HB_BachelorSpecialtyStudentCount
- /// </summary>
- public partial class HB_BachelorSpecialtyStudentCount
- {
- public HB_BachelorSpecialtyStudentCount()
- {
- this.HB_BachelorSpecialtyStudentCountDetail = new HashSet<HB_BachelorSpecialtyStudentCountDetail>();
- }
-
- /// <summary>
- /// BachelorSpecialtyStudentCountID
- /// </summary>
- public System.Guid BachelorSpecialtyStudentCountID { get; set; }
- /// <summary>
- /// Year
- /// </summary>
- public Nullable<int> Year { get; set; }
- /// <summary>
- /// Sex
- /// </summary>
- public Nullable<int> Sex { get; set; }
- /// <summary>
- /// EducationTypeID
- /// </summary>
- public Nullable<int> EducationTypeID { get; set; }
- /// <summary>
- /// LearningformID
- /// </summary>
- public Nullable<int> LearningformID { get; set; }
- /// <summary>
- /// StandardID
- /// </summary>
- public Nullable<int> StandardID { get; set; }
- /// <summary>
- /// IsTeacherIdentification
- /// </summary>
- public Nullable<bool> IsTeacherIdentification { get; set; }
- /// <summary>
- /// LearnSystem
- /// </summary>
- public Nullable<decimal> LearnSystem { get; set; }
- /// <summary>
- /// GraduationCount
- /// </summary>
- public Nullable<int> GraduationCount { get; set; }
- /// <summary>
- /// DegreeCount
- /// </summary>
- public Nullable<int> DegreeCount { get; set; }
- /// <summary>
- /// RecruitCount
- /// </summary>
- public Nullable<int> RecruitCount { get; set; }
- /// <summary>
- /// PlanGraduationCount
- /// </summary>
- public Nullable<int> PlanGraduationCount { get; set; }
- /// <summary>
- /// GraduatingCount
- /// </summary>
- public Nullable<int> GraduatingCount { get; set; }
- /// <summary>
- /// SpringRecruitCount
- /// </summary>
- public Nullable<int> SpringRecruitCount { get; set; }
- /// <summary>
- /// PreppyCount
- /// </summary>
- public Nullable<int> PreppyCount { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
- /// <summary>
- /// HB_BachelorSpecialtyStudentCountDetail
- /// </summary>
- public virtual HashSet<HB_BachelorSpecialtyStudentCountDetail> HB_BachelorSpecialtyStudentCountDetail { get; set; }
- }
- }
|