AdultBachelorSpecialtyStudentCountView.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace EMIS.ViewModel.Students.HighBaseTable
  7. {
  8. public class AdultBachelorSpecialtyStudentCountView
  9. { //成人奔科分专业学生数表(高基314)
  10. public Guid AdultBachelorSpecialtyStudentCountID { get; set; }
  11. [DisplayName("年度")]
  12. public int Year { get; set; }
  13. //[DisplayName("学生类别")]
  14. //public int StudentType { get; set; }
  15. [DisplayName("性别")]
  16. public int? Sex { get; set; }
  17. [DisplayName("培养层次")]
  18. public int? EducationID { get; set; }
  19. [DisplayName("培养层次类型")]
  20. public int? EducationTypeID { get; set; }
  21. [DisplayName("学习形式")]
  22. public int? LearningformID { get; set; }
  23. [DisplayName("标准专业")]
  24. public int? StandardID { get; set; }
  25. [DisplayName("是否师范标识")]
  26. public string IsTeacherIdentification { get; set; }
  27. [DisplayName("学制")]
  28. public decimal? LearnSystem { get; set; }
  29. [DisplayName("在校生数")]
  30. public int? InschoolCount { get; set; }
  31. [DisplayName("毕业生数")]
  32. public int? GraduationCount { get; set; }
  33. [DisplayName("授予学位数")]
  34. public int? DegreeCount { get;set;}
  35. [DisplayName("招生数")]
  36. public int? RecruitCount { get; set; }
  37. [DisplayName("预计毕业生数")]
  38. public int? PlanGraduationCount { get; set; }
  39. [DisplayName("年级数")]
  40. public int? SchoolyearNumID { get; set; }
  41. public Guid SpecialtyID { get; set; }
  42. public int RecordStatus { get; set; }
  43. /// <summary>
  44. /// 修改日期
  45. /// </summary>
  46. [DisplayName("修改日期")]
  47. public DateTime? ModifyTime { get; set; }
  48. /// <summary>
  49. /// 修改人
  50. /// </summary>
  51. [DisplayName("修改人")]
  52. public Guid? ModifyUserID { get; set; }
  53. /// <summary>
  54. /// 创建日期
  55. /// </summary>
  56. [DisplayName("创建日期")]
  57. public DateTime? CreateTime { get; set; }
  58. /// <summary>
  59. /// 创建人ID
  60. /// </summary>
  61. [DisplayName("创建人ID")]
  62. public Guid? CreateUserID { get; set; }
  63. }
  64. }