1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EMIS.ViewModel.Report
- {
- public class HighBaseRecruitTerriorialReportView
- {
- public int? TerritorialID { get; set; }
- public int? TerritorialRowNum { get; set; }
- public int? TerritorialOrder { get; set; }
- public string TerritorialName { get; set; }
- public int? RecruitCategoryID { get; set; }
- public int? RecruitCategoryRowNum { get; set; }
- public int? RecruitCategoryOrder { get; set; }
- public int? RecruitCategoryName { get; set; }
- public int? IsFreshGraduate { get; set; }
- public int? IsCountry { get; set; }
- public int? RecruitCount { get; set; }
- }
- }
|