2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
package com.landtool.lanbase.modules.res.entity;
 
public class Res_OneMap_Catalog {
    private Integer catlogid;
 
    private Integer parentid;
 
    private String title;
 
    private String icon;
 
    private Integer themeid;
 
    private String catlogtype;
 
    private Integer orderid;
 
    public Integer getCatlogid() {
        return catlogid;
    }
 
    public void setCatlogid(Integer catlogid) {
        this.catlogid = catlogid;
    }
 
    public Integer getParentid() {
        return parentid;
    }
 
    public void setParentid(Integer parentid) {
        this.parentid = parentid;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title == null ? null : title.trim();
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon == null ? null : icon.trim();
    }
 
    public Integer getThemeid() {
        return themeid;
    }
 
    public void setThemeid(Integer themeid) {
        this.themeid = themeid;
    }
 
    public String getCatlogtype() {
        return catlogtype;
    }
 
    public void setCatlogtype(String catlogtype) {
        this.catlogtype = catlogtype == null ? null : catlogtype.trim();
    }
 
    public Integer getOrderid() {
        return orderid;
    }
 
    public void setOrderid(Integer orderid) {
        this.orderid = orderid;
    }
}