干燥机配套车间生产管理系统/云平台服务端
bsw215583320
2024-04-16 c2fccb01b972176dc3da5a497b5e904025e9e98d
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
package org.jeecg.modules.system.model;
 
import java.io.Serializable;
import java.util.List;
 
/**
  * 树形下拉框
  * @author: jeecg-boot
 */
public class TreeSelectModel implements Serializable {
 
    private static final long serialVersionUID = 9016390975325574747L;
 
    private String key;
    
    private String title;
    /**
     * 是否叶子节点
     */
    private boolean isLeaf;
    
    private String icon;
    
    private String parentId;
    
    private String value;
    
    private String code;
    
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getParentId() {
        return parentId;
    }
 
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public boolean isLeaf() {
        return isLeaf;
    }
 
    public void setLeaf(boolean isLeaf) {
        this.isLeaf = isLeaf;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
    
    private List<TreeSelectModel> children;
 
    public List<TreeSelectModel> getChildren() {
        return children;
    }
 
    public void setChildren(List<TreeSelectModel> children) {
        this.children = children;
    }
 
}