3
13693261870
2022-09-16 63ba114e70e380442fcbed4a5157ee52c9491216
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
package com.landtool.lanbase.modules.sys.entity;
 
import java.io.Serializable;
 
/**
 * @author lanbase
 * @Description: TODO(应用程序查看权限申请表)
 */
public class SysSysteminfoApplyJoinOrgUser implements Serializable {
    //主键
    private Integer id;
    //应用程序ID
    private Integer appid;
    //用户ID
    private Integer userid;
    //申请时间
    private java.sql.Timestamp applytime;
    //审核结果:0待批复、1通过、2不通过
    private Integer auditresult;
    //审核意见
    private String auditopinion;
    //中文名
    private String chinesename;
    //单位或部门ID
    private Integer unitid;
    //单位名称
    private String unitname;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getAppid() {
        return appid;
    }
 
    public void setAppid(Integer appid) {
        this.appid = appid;
    }
 
    public Integer getUserid() {
        return userid;
    }
 
    public void setUserid(Integer userid) {
        this.userid = userid;
    }
 
    public java.sql.Timestamp getApplytime() {
        return applytime;
    }
 
    public void setApplytime(java.sql.Timestamp applytime) {
        this.applytime = applytime;
    }
 
    public Integer getAuditresult() {
        return auditresult;
    }
 
    public void setAuditresult(Integer auditresult) {
        this.auditresult = auditresult;
    }
 
    public String getAuditopinion() {
        return auditopinion;
    }
 
    public void setAuditopinion(String auditopinion) {
        this.auditopinion = auditopinion;
    }
 
    public String getChinesename() {
        return chinesename;
    }
 
    public void setChinesename(String chinesename) {
        this.chinesename = chinesename;
    }
 
    public Integer getUnitid() {
        return unitid;
    }
 
    public void setUnitid(Integer unitid) {
        this.unitid = unitid;
    }
 
    public String getUnitname() {
        return unitname;
    }
 
    public void setUnitname(String unitname) {
        this.unitname = unitname;
    }
}