招聘后台
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.

56 lines
1.3 KiB

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 用户实名认证表,数据实体对象
/// </summary>
[Table("znyc.sys_certification")]
[Serializable]
public class CertificationEntity : BaseEntity
{
/// <summary>
/// UnionId
/// </summary>
public string UnionId { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 性别
/// </summary>
public string Gender { get; set; }
/// <summary>
/// 身份证号码
/// </summary>
public string IdCard { get; set; }
/// <summary>
/// 签发地址
/// </summary>
public string IssuedAddress { get; set; }
/// <summary>
/// 身份证正面照片
/// </summary>
public string PositivePhoto { get; set; }
/// <summary>
/// 身份证反面照片
/// </summary>
public string ReversePhoto { get; set; }
/// <summary>
/// 实名状态
/// </summary>
public int Status { get; set; }
}
}