BachelorSpecialtyStudentCountView.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 BachelorSpecialtyStudentCountView
  9. { //本科分专业学生数表(高基314)
  10. public Guid BachelorSpecialtyStudentCountID { 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? GraduatingCount { get; set; }
  41. [DisplayName("春季招生数")]
  42. public int? SpringRecruitCount { get; set; }
  43. [DisplayName("预科生数")]
  44. public int? PreppyCount { get; set; }
  45. [DisplayName("年级数")]
  46. public int? SchoolyearNumID { get; set; }
  47. public Guid SpecialtyID { get; set; }
  48. public int RecordStatus { get; set; }
  49. /// <summary>
  50. /// 修改日期
  51. /// </summary>
  52. [DisplayName("修改日期")]
  53. public DateTime? ModifyTime { get; set; }
  54. /// <summary>
  55. /// 修改人
  56. /// </summary>
  57. [DisplayName("修改人")]
  58. public Guid? ModifyUserID { get; set; }
  59. /// <summary>
  60. /// 创建日期
  61. /// </summary>
  62. [DisplayName("创建日期")]
  63. public DateTime? CreateTime { get; set; }
  64. /// <summary>
  65. /// 创建人ID
  66. /// </summary>
  67. [DisplayName("创建人ID")]
  68. public Guid? CreateUserID { get; set; }
  69. }
  70. }