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 JoinIndexModel
- {
- /// <summary>
- /// 顶部广告位
- /// </summary>
- public GalleryEntity galleryEntity { get; set; }
- /// <summary>
- /// 招聘广告位
- /// </summary>
- public IList<GalleryEntity> PositionGallert { get; set; }
- /// <summary>
- /// 薪资待遇广告位
- /// </summary>
- public IList<GalleryEntity> SalaryList { get; set; }
- /// <summary>
- /// 工作环境
- /// </summary>
- public IList<GalleryEntity> EnvironmentList { get; set; }
- }
- }
|