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
| package com.ruoyi.system.domain;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import lombok.Data;
|
| 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;
| }
|
|