huanghongfa
2021-09-18 ae669d20c7e42fef2478cf8ce0824f1b05684d0b
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.panzhihua.service_community.model.dos;
 
import java.io.Serializable;
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.*;
 
import lombok.Data;
 
/**
 * @title: ComPensionAuthRecordDO 养老认证表实体类
 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
 * @description: 养老认证表实体类
 * @author: hans
 * @date: 2021/09/01 16:31
 */
@Data
@TableName("com_pension_auth_records")
public class ComPensionAuthRecordDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @TableId(type = IdType.AUTO)
    private Long id;
    /**
     *养老金用户id
     */
    private Long pensionerId;
    /**
     *提交用户id
     */
    private Long submitUserId;
 
    /**
     * 认证方式(1.视频认证 2.人脸认证 3.线下认证)
     */
    private Integer authMethod;
 
    /**
     *认证期数
     */
    private String authPeriod;
    /**
     * 认证视频
     */
    private String authVideo;
    /**
     *审核人员
     */
    private Long approverId;
    /**
     *审核状态(1.待审核 2.驳回 3.通过)
     */
    private Integer approvalStatus;
    /**
     *审核时间
     */
    private Date approvalDate;
    /**
     *标记
     */
    private String mark;
    /**
     *驳回原因
     */
    private String rejectReason;
    /**
     *认证状态(1.已认证 0.未认证)
     */
    private Integer authStatus;
    /**
     *认证时间
     */
    private Date authDate;
    /**
     *社区id
     */
    private Long communityId;
    /**
     *创建时间
     */
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
    /**
     *更新时间
     */
    @TableField(fill = FieldFill.UPDATE)
    private Date updateAt;
 
    /**
     * 现居地址
     */
    private String address;
 
    /**
     *审核状态(1.待审核 2.驳回 3.通过)
     */
    public interface approvalStatus{
        int dsh = 1;
        int bh = 2;
        int tg = 3;
    }
 
    /**
     *认证状态(1.已认证 0.未认证)
     */
    public interface authStatus{
        int rez = 1;
        int wrz = 0;
    }
 
    /**
     * 认证方式(1.视频认证 2.人脸认证 3.线下认证)
     */
    public interface authMethod{
        int sprz = 1;
        int rlrz = 2;
        int xxrz = 3;
    }
}