12345678910111213141516171819202122232425262728293031323334353637 |
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- /// <summary>
- /// 人才招聘
- /// </summary>
- public class PositionIndexModel
- {
- /// <summary>
- /// 顶部广告位
- /// </summary>
- public GalleryEntity GalleryEntity { get; set; }
- /// <summary>
- /// 职位广告位
- /// </summary>
- public IList<GalleryEntity> GalleryPositionList { get; set; }
- /// <summary>
- /// 薪资待遇广告位
- /// </summary>
- public IList<GalleryEntity> GallerySalaryList { get; set; }
- /// <summary>
- /// 工作环境
- /// </summary>
- public IList<GalleryEntity> GalleryWorkList { get; set; }
- }
- }
|