HighBaseStudentOriginCountView.cs 994 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EMIS.ViewModel.Report
  7. {
  8. public class HighBaseStudentOriginCountView
  9. {
  10. public int? RowNumber { get; set; }
  11. public string TerritorialName { get; set; }
  12. public string TerritorialCode { get; set; }
  13. public string EducationTypeName { get; set; }
  14. public int? EducationTypeCode { get; set; }
  15. public Guid? RecruitStatusID { get; set; }
  16. public int? Year { get; set; }
  17. public int? Territorial { get; set; }
  18. public int? EducationTypeID { get; set; }
  19. public int? RecruitCount { get; set; }
  20. public int? InschoolCount { get; set; }
  21. public int? RecordStatus { get; set; }
  22. public Guid? CreateUserID { get; set; }
  23. public DateTime? CreateTime { get; set; }
  24. public Guid? ModifyUserID { get; set; }
  25. public DateTime? ModifyTime { get; set; }
  26. }
  27. }