1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
package com.pojo;
 
import java.util.Date;
 
public class Permission {
    private Integer id;
 
    private String name;
 
    private Integer pid;
 
    private Integer zindex;
 
    private Integer istype;
 
    private String descpt;
 
    private String code;
 
    private String icon;
 
    private String page;
 
    private Date insertTime;
 
    private Date updateTime;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }
 
    public Integer getPid() {
        return pid;
    }
 
    public void setPid(Integer pid) {
        this.pid = pid;
    }
 
    public Integer getZindex() {
        return zindex;
    }
 
    public void setZindex(Integer zindex) {
        this.zindex = zindex;
    }
 
    public Integer getIstype() {
        return istype;
    }
 
    public void setIstype(Integer istype) {
        this.istype = istype;
    }
 
    public String getDescpt() {
        return descpt;
    }
 
    public void setDescpt(String descpt) {
        this.descpt = descpt == null ? null : descpt.trim();
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon == null ? null : icon.trim();
    }
 
    public String getPage() {
        return page;
    }
 
    public void setPage(String page) {
        this.page = page == null ? null : page.trim();
    }
 
    public Date getInsertTime() {
        return insertTime;
    }
 
    public void setInsertTime(Date insertTime) {
        this.insertTime = insertTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    @Override public String toString() {
        return "Permission{" + "id=" + id + ", name='" + name + '\'' + ", pid="
                + pid + ", zindex=" + zindex + ", istype=" + istype
                + ", descpt='" + descpt + '\'' + ", code='" + code + '\''
                + ", icon='" + icon + '\'' + ", page='" + page + '\''
                + ", insertTime=" + insertTime + ", updateTime=" + updateTime
                + '}';
    }
}