新版仿ok交易所-后端
zj
2025-01-06 6e21cf6973aa1898259ddceda665f0f1b06272ab
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
59
60
61
62
63
64
package com.yami.trading.bean.model;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.yami.trading.common.domain.BaseEntity;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 用户实名认证
 */
 
@Data
@TableName("tz_real_name_auth_record")
public class RealNameAuthRecord extends BaseEntity {
 
    private  String userId;
 
 
    /**
     * 国籍
     */
    private String nationality;
 
    /**
     * ID名称,如身份证等
     */
    private String idName;
    /**
     * 证件号码
     */
    private String idNumber;
    /**
     * 实名姓名
     */
    private String name;
    /**
     * 证件正面照
     */
    private String idFrontImg;
    /**
     * 证件背面照
     */
    private String idBackImg;
 
    /**
     * 手持证件正面照
     */
    private String handheldPhoto;
 
    /**
     * 0已申请未审核 ,1.审核中 2 审核通过,3审核未通过
     */
    private int status;
    /**
     * 审核消息,未通过原因
     *
     */
    private String msg;
    /**
     * 审核时间
     */
    private Date operationTime;
}