12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EMIS.ViewModel.Report
- {
- public class HighBaseStudentOriginCountView
- {
- public int? RowNumber { get; set; }
- public string TerritorialName { get; set; }
- public string TerritorialCode { get; set; }
- public string EducationTypeName { get; set; }
- public int? EducationTypeCode { get; set; }
- public Guid? RecruitStatusID { get; set; }
- public int? Year { get; set; }
- public int? Territorial { get; set; }
- public int? EducationTypeID { get; set; }
- public int? RecruitCount { get; set; }
- public int? InschoolCount { get; set; }
- public int? RecordStatus { get; set; }
- public Guid? CreateUserID { get; set; }
- public DateTime? CreateTime { get; set; }
- public Guid? ModifyUserID { get; set; }
- public DateTime? ModifyTime { get; set; }
- }
- }
|