zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
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
78
79
80
81
82
package com.gear.swx.domain;
 
import com.gear.common.annotation.Excel;
import lombok.Data;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableId;
import com.gear.common.core.domain.BusiBaseEntity;
 
/**
 * 认证记录对象 swx_identification
 *
 * @author czx
 * @date 2023-11-25
 */
@Data
@TableName("swx_identification")
public class SwxIdentification extends BusiBaseEntity {
 
    private static final long serialVersionUID=1L;
 
    /** $column.columnComment */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
 
    /** $column.columnComment */
    @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
    private String userId;
 
    /** 姓氏 */
    @Excel(name = "姓氏")
    private String surname;
 
    /** 名字 */
    @Excel(name = "名字")
    private String name;
 
    /** 国家 */
    @Excel(name = "国家")
    private String country;
 
    /** 性别 */
    @Excel(name = "性别")
    private Integer sex;
 
    /** 地址 */
    @Excel(name = "地址")
    private String address;
 
    /** 手机 */
    @Excel(name = "手机")
    private String phone;
 
    /** 出生日期 */
    @Excel(name = "出生日期")
    private String birthday;
 
    /** 证件类型 */
    @Excel(name = "证件类型")
    private Integer idType;
 
    /** 证件号码 */
    @Excel(name = "证件号码")
    private String idNumber;
 
    /** 证件正面照 */
    @Excel(name = "证件正面照")
    private String frontImg;
 
    /** 证件反面照 */
    @Excel(name = "证件反面照")
    private String reverseImg;
 
    /** 证件手持照 */
    @Excel(name = "证件手持照")
    private String handImg;
 
    /** 审核状态 */
    @Excel(name = "审核状态")
    private Integer status;
 
}