1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
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
124
125
126
127
package com.landtool.lanbase.modules.org.entity;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author zimao.guo
 * @Description: TODO(用户审核表)
 * @date 2018-01-24 14:25:23
 */
public class OrgUserAuth implements Serializable {
    
    //审核ID
    private Long authId;
    //系统用户ID
    private Long userId;
    //审核级别:0:初审1:终审
    private Long authGrad;
    //审核人用户ID
    private Long authUserId;
    //审核人ID
    private Long rCreateUser;
    //审核时间
    private Date rCreateDate;
    //记录排序
    private String rOrder;
    //审核结果0:不通过1:通过
    private Long authResult;
 
    /**
     * 设置:审核ID
     */
    public void setAuthId(Long authId) {
        this.authId = authId;
    }
    /**
     * 获取:审核ID
     */
    public Long getAuthId() {
        return authId;
    }
    /**
     * 设置:系统用户ID
     */
    public void setUserId(Long userId) {
        this.userId = userId;
    }
    /**
     * 获取:系统用户ID
     */
    public Long getUserId() {
        return userId;
    }
    /**
     * 设置:审核级别:0:初审1:终审
     */
    public void setAuthGrad(Long authGrad) {
        this.authGrad = authGrad;
    }
    /**
     * 获取:审核级别:0:初审1:终审
     */
    public Long getAuthGrad() {
        return authGrad;
    }
    /**
     * 设置:审核人用户ID
     */
    public void setAuthUserId(Long authUserId) {
        this.authUserId = authUserId;
    }
    /**
     * 获取:审核人用户ID
     */
    public Long getAuthUserId() {
        return authUserId;
    }
    /**
     * 设置:审核人ID
     */
    public void setrCreateUser(Long rCreateUser) {
        this.rCreateUser = rCreateUser;
    }
    /**
     * 获取:审核人ID
     */
    public Long getrCreateUser() {
        return rCreateUser;
    }
    /**
     * 设置:审核时间
     */
    public void setrCreateDate(Date rCreateDate) {
        this.rCreateDate = rCreateDate;
    }
    /**
     * 获取:审核时间
     */
    public Date getrCreateDate() {
        return rCreateDate;
    }
    /**
     * 设置:记录排序
     */
    public void setrOrder(String rOrder) {
        this.rOrder = rOrder;
    }
    /**
     * 获取:记录排序
     */
    public String getrOrder() {
        return rOrder;
    }
    /**
     * 设置:审核结果0:不通过1:通过
     */
    public void setAuthResult(Long authResult) {
        this.authResult = authResult;
    }
    /**
     * 获取:审核结果0:不通过1:通过
     */
    public Long getAuthResult() {
        return authResult;
    }
 
}