using System;
using System.Collections.Generic;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 输出对象模型
///
[Serializable]
public class ApplyJobOutputDto
{
public long Id { get; set; }
public long UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 姓名
///
public string UserName { get; set; }
///
/// 头像
///
public string AvatarUrl { get; set; }
///
/// 电话
///
public string Phone { get; set; }
///
/// 行业类型
///
public long IndustryId { get; set; }
///
/// 行业类型名称
///
public string IndustryName { get; set; }
///
/// 岗位类型
///
public long JobId { get; set; }
///
/// 岗位类型名称
///
public string JobName { get; set; }
///
/// 求职地区省份
///
public string ProvinceId { get; set; }
///
/// 求职地区
///
public string CityId { get; set; }
///
/// 状态
///
public int Status { get; set; }
public string StatusName { get; set; }
///
/// 是否置顶
///
public bool IsTop { get; set; }
///
/// 是否置顶
///
public string Top { get; set; }
///
/// 是否有驾驶证
///
public bool? IsHaveDriverLicense { get; set; }
///
/// 是否有驾驶证
///
public string DriverLicense { get; set; }
///
/// 是否公开
///
public bool IsPublic { get; set; }
///
/// 是否公开
///
public string Public { get; set; }
///
/// 置顶到期时间
///
public DateTime? TopExpireDate { get; set; }
///
/// 工资经验Id
///
public long? ExperienceId { get; set; }
///
/// 工资经验
///
public string ExperienceName { get; set; }
///
/// 更新时间
///
public DateTime ModifiedTime { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
///
/// 流水号
///
public string SerialNumber { get; set; }
///
/// 刷新时间
///
public DateTime RefreshDate { get; set; }
///
/// 出生日期
///
public DateTime? BirthDate { get; set; }
///
/// 年龄
///
public int? Age { get; set; }
///
/// 性别
///
public int? Gender { get; set; }
///
/// 地址明细(冗余,用于首页查询省市区模糊匹配)
///
public string Address { get; set; }
///
/// 失败原因
///
public string Note { get; set; }
///
/// 浏览量
///
public int PageView { get; set; }
///
/// 微信昵称
///
public string NickName { get; set; }
///
/// 微信头像
///
public string WxAvatarUrl { get; set; }
///
/// 通话评价反馈
///
public List CallFeedbacks { get; set; }
///
/// 通话评价反馈是否已读
///
public bool IsReadForCallFeedback { get; set; }
}
}