| | |
| | | package com.xcong.excoin.modules.member.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.xcong.excoin.common.system.base.BaseEntity; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 用户实名认证信息实体 |
| | | * |
| | | * @author wzy |
| | | * @date 2020-05-18 |
| | | **/ |
| | | @Data |
| | | @TableName("member_authentication") |
| | | public class MemberAuthenticationEntity extends BaseEntity { |
| | | |
| | | /** |
| | | * 用户ID |
| | | */ |
| | | private Long memberId; |
| | | |
| | | /** |
| | | * 真实姓名 |
| | | */ |
| | | private String realName; |
| | | |
| | | /** |
| | | * 姓 |
| | | */ |
| | | private String firstName; |
| | | |
| | | /** |
| | | * 名 |
| | | */ |
| | | private String secondName; |
| | | |
| | | /** |
| | | * 国家 |
| | | */ |
| | | private String nation; |
| | | |
| | | /** |
| | | * 身份证正面 |
| | | */ |
| | | private String idcardImageFront; |
| | | |
| | | /** |
| | | * 身份证背面 |
| | | */ |
| | | private String idcardImageBack; |
| | | |
| | | /** |
| | | * 手持身份证 |
| | | */ |
| | | private String idcardImageInHand; |
| | | } |
| | | package com.xcong.excoin.modules.member.entity;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import com.xcong.excoin.common.system.base.BaseEntity;
|
| | | import lombok.Data;
|
| | |
|
| | | /**
|
| | | * 用户实名认证信息实体
|
| | | *
|
| | | * @author wzy
|
| | | * @date 2020-05-18
|
| | | **/
|
| | | @Data
|
| | | @TableName("member_authentication")
|
| | | public class MemberAuthenticationEntity extends BaseEntity {
|
| | |
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | /**
|
| | | * 用户ID
|
| | | */
|
| | | private Long memberId;
|
| | |
|
| | | /**
|
| | | * 真实姓名
|
| | | */
|
| | | private String realName;
|
| | |
|
| | | /**
|
| | | * 姓
|
| | | */
|
| | | private String firstName;
|
| | |
|
| | | /**
|
| | | * 名
|
| | | */
|
| | | private String secondName;
|
| | |
|
| | | /**
|
| | | * 国家
|
| | | */
|
| | | private String nation;
|
| | | |
| | | /**
|
| | | * 身份证号
|
| | | */
|
| | | private String idcardNo;
|
| | | |
| | | /**
|
| | | * 证件类型
|
| | | */
|
| | | private String type;
|
| | |
|
| | | /**
|
| | | * 身份证正面
|
| | | */
|
| | | private String idcardImageFront;
|
| | |
|
| | | /**
|
| | | * 身份证背面
|
| | | */
|
| | | private String idcardImageBack;
|
| | |
|
| | | /**
|
| | | * 手持身份证
|
| | | */
|
| | | private String idcardImageInHand;
|
| | | }
|