StudentCountReportView.cs 990 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.Report
  6. {
  7. public class StudentCountReportView
  8. {
  9. public string SchoolyearCode { get; set; }
  10. public Guid? CampusID { get; set; }
  11. public string CampusNo { get; set; }
  12. public string CampusName { get; set; }
  13. public Guid? CollegeID { get; set; }
  14. public string CollegeNo { get; set; }
  15. public string CollegeName { get; set; }
  16. public int? StandardID { get; set; }
  17. public string StandardName { get; set; }
  18. public int? GradeYear { get; set; }
  19. public int? EducationID { get; set; }
  20. public string EducationName { get; set; }
  21. public int? StudentType { get; set; }
  22. public string StudentTypeName { get; set; }
  23. public int? ClassmajorCount { get; set; }
  24. public int? StudentMaleCount { get; set; }
  25. public int? StudentFemaleCount { get; set; }
  26. }
  27. }