1
dd
2025-11-06 1e0848427a1f5c771b61a2939af3ff78b9b1d37b
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
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
import java.util.Date;
 
/**
 * 实名认证
 */
@Data
public class UserKyc {
 
    // 唯一ID
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    // 系统生成的用户ID
    private Integer userId;
 
    //用户账号
    private String account;
 
    //头像图片
    private String headPortraitImg;
 
    //头像图片
    private String nationalEmblemImg;
 
    //手持
    private String handImg;
 
    //审批状态  0:待审批  1:通过 2:驳回
    private Integer state;
 
    //驳回信息
    private String message;
 
    // 创建时间
    private Date createdAt;
 
    // 更新时间
    private Date updatedAt;
 
    //手持照片
    private String name;
 
    //身份证
    private String idCard;
 
    //昵称
    @TableField(exist = false)
    private String nickName;
 
    //手机
    @TableField(exist = false)
    private String phone;
}