using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace EMIS.ViewModel.Students.HighBaseTable { public class AdultJuniorSpecialtyStudentCountView { //成人专科分专业学生数表(高基313) public Guid SpecialtyID { get; set; } public Guid AdultJuniorSpecialtyStudentCountID { get; set; } [DisplayName("年度")] public int Year { get; set; } //[DisplayName("学生类别")] //public int StudentType { get; set; } [DisplayName("性别")] public int? Sex { get; set; } [DisplayName("培养层次")] public int? EducationID { get; set; } [DisplayName("培养层次类型")] public int? EducationTypeID { get; set; } [DisplayName("学习形式")] public int? LearningformID { get; set; } [DisplayName("标准专业")] public int? StandardID { get; set; } [DisplayName("是否师范标识")] public string IsTeacherIdentification { get; set; } [DisplayName("学制")] public decimal? LearnSystem { get; set; } [DisplayName("在校生数")] public int? InschoolCount { get; set; } [DisplayName("毕业生数")] public int? GraduationCount { get; set; } [DisplayName("招生数")] public int? RecruitCount { get; set; } [DisplayName("预计毕业生数")] public int? PlanGraduationCount { get; set; } [DisplayName("年级数")] public int? SchoolyearNumID { get; set; } public int RecordStatus { get; set; } /// /// 修改日期 /// [DisplayName("修改日期")] public DateTime? ModifyTime { get; set; } /// /// 修改人 /// [DisplayName("修改人")] public Guid? ModifyUserID { get; set; } /// /// 创建日期 /// [DisplayName("创建日期")] public DateTime? CreateTime { get; set; } /// /// 创建人ID /// [DisplayName("创建人ID")] public Guid? CreateUserID { get; set; } } }