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.User])]
public class GetUserResumeQuery : IRequest
{
///
/// 用户Id
///
public Guid? UserId { get; set; }
}
///
/// 查询用户简历-结果
///
public class GetUserResumeQueryResult
{
///
/// Id
///
public Guid Id { get; set; }
///
/// 头像
///
public string Avatar { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 手机号
///
public string PhoneNumber { get; set; }
///
/// 身份证号
///
public string Identity { get; set; }
///
/// 性别
///
public EnumUserGender? Gender { get; set; }
///
/// 年龄
///
public int? Age { get; set; }
///
/// 是否实名
///
public bool IsReal { get; set; }
///
/// 上岗次数
///
public int TaskCount { get; set; }
///
/// 常驻省份编号
///
public string ProvinceCode { get; set; }
///
/// 常驻省份
///
public string ProvinceContent { get; set; }
///
/// 常驻城市编号
///
public string CityCode { get; set; }
///
/// 常驻城市
///
public string CityContent { get; set; }
///
/// 身份编号
///
public string PersonalIdentityCode { get; set; }
///
/// 身份
///
public string PersonalIdentityContent { get; set; }
///
/// 学历编号
///
public string EducationalBackgroundCode { get; set; }
///
/// 学历
///
public string EducationalBackgroundContent { get; set; }
///
/// 用户信息期望岗位
///
public List UserExpectJobs { get; set; }
///
/// 空闲时间
///
public EnumPersonalFreeTime? FreeTime { get; set; }
///
/// 求职状态
///
public EnumPersonalJobSeekingStatus? JobSeekingStatus { get; set; }
///
/// 用户信息资格证书
///
public List UserCredentials { get; set; }
///
/// 工作资历
///
public string WorkSeniority { get; set; }
///
/// 工作经验
///
public string WorkExperience { get; set; }
///
/// 身高
///
public int? Height { get; set; }
///
/// 体重
///
public int? Weight { get; set; }
///
/// 生活照
///
public List Photos { get; set; }
}
}