using Furion.DataValidation; using MediatR; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 查询用户简历-个人信息 /// [Resource([EnumResourceController.UserResume])] public class GetUserResumePersonalQuery : IRequest { } /// /// 查询用户简历-个人信息-结果 /// public class GetUserResumePersonalQueryResult { /// /// 头像 /// public string Avatar { get; set; } /// /// 姓名 /// public string Name { get; set; } /// /// 手机号 /// /// 联系电话 public string ContactPhoneNumber { get; set; } /// /// 身份证号 /// public string Identity { get; set; } /// /// 身份编号 /// public string PersonalIdentityCode { get; set; } /// /// 身份 /// public string PersonalIdentityContent { get; set; } /// /// 学历编号 /// public string EducationalBackgroundCode { get; set; } /// /// 学历 /// public string EducationalBackgroundContent { get; set; } /// /// 常驻省份编号 /// public string ProvinceCode { get; set; } /// /// 常驻省份 /// public string ProvinceContent { get; set; } /// /// 常驻城市编号 /// public string CityCode { get; set; } /// /// 常驻城市 /// public string CityContent { get; set; } } }