1234567891011121314151617181920212223242526272829303132333435 |
- using CZFW.Framework.Model.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- /// <summary>
- /// 招聘列表
- /// </summary>
- public class RecuritModel
- {
- /// <summary>
- /// 顶部广告位
- /// </summary>
- public GalleryEntity GalleryEntity { get; set; }
- /// <summary>
- /// 招聘详情广告位
- /// </summary>
- public IList<GalleryEntity> GalleryList { get; set; }
- /// <summary>
- /// 薪资待遇广告位
- /// </summary>
- public IList<GalleryEntity> SalaryGalist { get; set; }
- /// <summary>
- /// 工作环境广告位
- /// </summary>
- public IList<GalleryEntity> EnvironmentalList { get; set; }
- }
- }
|