gao
2020-06-16 de971add14a7479aa9b18eadf8d6fad5be381d38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.xcong.excoin.modules.authentication.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.entity.BaseEntity;
import lombok.Data;
 
@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 idcardImageFront;
 
    /**
     * 身份证背面
     */
    private String idcardImageBack;
 
    /**
     * 手持身份证
     */
    private String idcardImageInHand;
 
}