using System;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 输出对象模型
///
[Serializable]
public class UserOutputDto
{
///
/// Id
///
public long Id { get; set; }
///
/// OpenId
///
public string OpenId { get; set; }
///
/// UnionId
///
public string UnionId { get; set; }
///
/// 用户昵称
///
public string UserName { get; set; }
///
/// 用户头像
///
public string AvatarUrl { get; set; }
///
/// 手机号
///
public string Phone { get; set; }
///
/// 状态
///
public int Status { get; set; }
///
/// 是否实名认证
///
//public bool IsRealAuthentication { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
///
/// 更新时间
///
public DateTime ModifiedTime { get; set; }
///
/// 实名认证Id
///
public long CertificationId { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 性别
///
public string Gender { get; set; }
///
/// 身份证号码
///
public string IdCard { get; set; }
///
/// 签发地址
///
public string IssuedAddress { get; set; }
///
/// 身份证正面照片
///
public string PositivePhoto { get; set; }
///
/// 身份证反面照片
///
public string ReversePhoto { get; set; }
///
/// 实名认证状态
///
public int CertificationStatus { get; set; }
///
/// 最后登录时间
///
public DateTime? LastLoginTime { get; set; }
}
}