PositionIndexModel.cs 866 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using CZFW.Framework.Model.Entity;
  2. using CZKJ.GBRS2.Entity;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace CZKJ.GBRS2.WebMVC.Models
  8. {
  9. /// <summary>
  10. /// 人才招聘
  11. /// </summary>
  12. public class PositionIndexModel
  13. {
  14. /// <summary>
  15. /// 顶部广告位
  16. /// </summary>
  17. public GalleryEntity GalleryEntity { get; set; }
  18. /// <summary>
  19. /// 职位广告位
  20. /// </summary>
  21. public IList<GalleryEntity> GalleryPositionList { get; set; }
  22. /// <summary>
  23. /// 薪资待遇广告位
  24. /// </summary>
  25. public IList<GalleryEntity> GallerySalaryList { get; set; }
  26. /// <summary>
  27. /// 工作环境
  28. /// </summary>
  29. public IList<GalleryEntity> GalleryWorkList { get; set; }
  30. }
  31. }