using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 系统菜单,数据实体对象 /// [Table("rm_recruitment")] [Serializable] public class RecruitmentEntity : BaseEntity { /// /// 用户Id /// public long UserId { get; set; } /// /// 流水号 /// public string SerialNumber { get; set; } /// /// 招聘标题 /// public string Title { 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 RefreshDate { get; set; } /// /// 浏览量 /// public int PageView { get; set; } /// /// 置顶到期时间 /// public DateTime TopExpireDate { get; set; } /// /// 地址明细(冗余,用于首页查询省市区模糊匹配) /// public string Address { get; set; } /// /// 是否实名认证 /// public bool IsRealAuthentication { get; set; } /// /// 联系人 /// public string Contact { get; set; } } }