using System; using GDZZ.Core; namespace GDZZ.Application { /// /// 招聘消息输出参数 /// public class RecruitMessageDto { /// /// 主键Id /// public long Id { get; set; } /// /// 租户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; } } }