package com.xcong.excoin.modules.member.vo;  
 | 
  
 | 
import com.baomidou.mybatisplus.annotation.IdType;  
 | 
import com.baomidou.mybatisplus.annotation.TableId;  
 | 
  
 | 
import lombok.Data;  
 | 
  
 | 
@Data  
 | 
public class MemberAuthenticationVo {  
 | 
  
 | 
    @TableId(value = "id",type = IdType.AUTO)  
 | 
    private Long id;  
 | 
      
 | 
    /**  
 | 
     * 实名认证状态 0-审核未通过 1-审核通过 2-等待审核  
 | 
     */  
 | 
    private Integer certifyStatus;  
 | 
      
 | 
    /**  
 | 
     * 用户ID  
 | 
     */  
 | 
    private Long memberId;  
 | 
  
 | 
    /**  
 | 
     * 真实姓名  
 | 
     */  
 | 
    private String realName;  
 | 
  
 | 
    /**  
 | 
     * 姓  
 | 
     */  
 | 
    private String firstName;  
 | 
  
 | 
    /**  
 | 
     * 名  
 | 
     */  
 | 
    private String secondName;  
 | 
  
 | 
    /**  
 | 
     * 国家  
 | 
     */  
 | 
    private String nation;  
 | 
    /**  
 | 
     * 身份证号  
 | 
     */  
 | 
    private String idcardNo;  
 | 
  
 | 
    /**  
 | 
     * 身份证正面  
 | 
     */  
 | 
    private String idcardImageFront;  
 | 
  
 | 
    /**  
 | 
     * 身份证背面  
 | 
     */  
 | 
    private String idcardImageBack;  
 | 
  
 | 
    /**  
 | 
     * 手持身份证  
 | 
     */  
 | 
    private String idcardImageInHand;  
 | 
  
 | 
}  
 |