You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

41 lines
905 B

using System;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
/// <summary>
/// 输出对象模型
/// </summary>
[Serializable]
public class CertificationOutput
{
/// <summary>
/// Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 证件号
/// </summary>
public string IdCard { get; set; }
/// <summary>
/// 身份证正面照片
/// </summary>
public string PositivePhoto { get; set; }
/// <summary>
/// 身份证反面照片
/// </summary>
public string ReversePhoto { get; set; }
/// <summary>
/// 状态
/// </summary>
public int State { get; set; }
}
}