招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
2.7 KiB

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