HighBaseAgeCountView.cs 656 B

12345678910111213141516171819202122
  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 HighBaseAgeCountView
  9. {
  10. public string InschoolAgeStatusID { get; set; }
  11. public int? Year { get; set; }
  12. public int? Sex { get; set; }
  13. public string SexCode { get; set; }
  14. public string SexName { get; set; }
  15. public int? EducationTypeID { get; set; }
  16. public string AgeName { get; set; }
  17. public int? Count { get; set; }
  18. public string EducationTypeCode { get; set; }
  19. public int? colNum { get; set; }
  20. }
  21. }