using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Cloudcar.Admin.Commons.Entitys; namespace Znyc.Cloudcar.Admin.Security.Entitys { /// /// ApplyJob /// [Table("applyjob")] [Serializable] public class ApplyJobEntity : BaseEntity { /// /// 流水号 /// public string SerialNumber { get; set; } public long UserId { get; set; } /// /// 行业类型 /// public long IndustryId { get; set; } /// /// 岗位类型 /// public long JobId { get; set; } /// /// 求职地区省份 /// public string ProvinceId { get; set; } /// /// 求职地区市 /// public string CityId { get; set; } /// /// 求职地区区 /// public string AreaId { get; set; } /// /// 联系电话 /// public string Phone { get; set; } /// /// 工作经验Id /// public long? ExperienceId { get; set; } /// /// 是否有驾驶证 /// public bool? IsHaveDriverLicense { get; set; } /// /// 性别 /// public int? Gender { get; set; } /// /// 出生年月 /// public DateTime? BirthDate { get; set; } /// /// 年龄 /// public int? Age { get; set; } /// /// 状态 /// public int State { get; set; } /// /// 求职详情 /// public string Content { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 置顶到期时间 /// public DateTime TopExpireDate { get; set; } /// /// 是否公开 /// public bool IsPublic { get; set; } /// /// 刷新时间 /// public DateTime RefreshDate { get; set; } /// /// 浏览量 /// public int PageView { get; set; } /// /// 地址明细(冗余,用于首页查询省市区模糊匹配) /// public string Address { get; set; } /// /// 是否实名认证 /// public bool IsRealAuthentication { get; set; } } }