using System; using SqlSugar; using System.ComponentModel; using Magic.Core.Entity; namespace Magic.Application.Entity { /// /// 招聘消息 /// [SugarTable("recruit_message")] [Description("招聘消息")] public class RecruitMessage : DEntityBase { /// /// 租户Id /// public long TenantId { get; set; } /// /// 职位详情 /// public string PositionInfo { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 状态 /// public int Status { get; set; } /// /// 省份 /// public int ProvinceId { get; set; } /// /// 城市 /// public int CityId { get; set; } /// /// 区 /// public int AreaId { get; set; } /// /// 详细地址 /// public int Address { get; set; } /// /// 联系电话 /// public string Phone { get; set; } /// /// 标签 /// public string Tag { get; set; } /// /// 学历 /// public int Education { get; set; } /// /// 经验 /// public int Experience { get; set; } } }