新版仿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
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.yami.trading.api.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@ApiModel
@Data
public class HighLevelAuthRecordDto {
 
 
    @ApiModelProperty("真实姓名")
    private String realName;
 
    /**
     * 工作地址
     */
    @ApiModelProperty("工作地址")
    private String workPlace;
 
    private String work_place;
 
    /**
     * 家庭地址
     */
    @ApiModelProperty("家庭地址")
    private String homePlace;
    private String home_place;
 
    /**
     * 亲属关系
     */
    @ApiModelProperty("亲属关系")
    private String relativesRelation;
    private String relatives_relation;
 
    /**
     * 亲属名称
     */
    @ApiModelProperty("亲属名称")
    private String relativesName;
    private String relatives_name;
 
    /**
     * 亲属地址
     */
    @ApiModelProperty("亲属地址")
    private String relativesPlace;
 
    private String relatives_place;
 
    /**
     * 亲属电话
     */
    @ApiModelProperty("亲属电话")
    private String relativesPhone;
    private String relatives_phone;
 
 
 
    @ApiModelProperty("0已申请未审核 ,1审核中 ,2 审核通过,3审核未通过")
    private int status;
    /**
     * 审核消息,未通过原因
     *
     */
    @ApiModelProperty("审核消息,未通过原因")
    private String msg;
 
    /**
     * 审核时间
     */
    @ApiModelProperty("审核时间")
    private Date operationTime;
}