HighBaseRecruitTerriorialReportView.cs 782 B

1234567891011121314151617181920212223
  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 HighBaseRecruitTerriorialReportView
  9. {
  10. public int? TerritorialID { get; set; }
  11. public int? TerritorialRowNum { get; set; }
  12. public int? TerritorialOrder { get; set; }
  13. public string TerritorialName { get; set; }
  14. public int? RecruitCategoryID { get; set; }
  15. public int? RecruitCategoryRowNum { get; set; }
  16. public int? RecruitCategoryOrder { get; set; }
  17. public int? RecruitCategoryName { get; set; }
  18. public int? IsFreshGraduate { get; set; }
  19. public int? IsCountry { get; set; }
  20. public int? RecruitCount { get; set; }
  21. }
  22. }