using AutoMapper; using System; using Znyc.Recruitment.Admin.Commons.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 输入对象模型 /// [AutoMap(typeof(RecruitmentEntity))] [Serializable] public class RecruitmentInputDto : IInputDto { /// /// 标题 /// public string Title { get; set; } public long UserId { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 行业类型 /// public long IndustryId { get; set; } /// /// 岗位类型 /// public long JobId { get; set; } /// /// 工作地区省 /// public long ProvinceId { get; set; } /// /// 工作地区市 /// public long CityId { get; set; } /// /// 工作地区区 /// public long AreaId { get; set; } /// /// 状态 /// public int Status { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 是否公开 /// public bool IsPublic { get; set; } /// /// 工资福利 /// public string Welfare { get; set; } /// /// 置顶到期时间 /// public DateTime TopExpireTime { get; set; } /// /// 流水号 /// public string SerialNumber { get; set; } /// /// 地址明细(冗余,用于首页查询省市区模糊匹配) /// public string Address { get; set; } /// /// 创建人 /// public long CreatedUserId { get; set; } /// /// 发布时间 /// public DateTime CreatedTime { get; set; } /// /// 修改时间 /// public DateTime ModifiedTime { get; set; } /// /// 刷新时间 /// public DateTime RefreshDate { get; set; } public long Id { get; set; } } }