12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.Report
- {
- public class StudentCountReportView
- {
- public string SchoolyearCode { get; set; }
- public Guid? CampusID { get; set; }
- public string CampusNo { get; set; }
- public string CampusName { get; set; }
- public Guid? CollegeID { get; set; }
- public string CollegeNo { get; set; }
- public string CollegeName { get; set; }
- public int? StandardID { get; set; }
- public string StandardName { get; set; }
- public int? GradeYear { get; set; }
- public int? EducationID { get; set; }
- public string EducationName { get; set; }
- public int? StudentType { get; set; }
- public string StudentTypeName { get; set; }
- public int? ClassmajorCount { get; set; }
- public int? StudentMaleCount { get; set; }
- public int? StudentFemaleCount { get; set; }
- }
- }
|