zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.modules.weekly.vo;
 
 
import org.jeecg.modules.weekly.entity.ProProject;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
 
/**
 * 项目列表树
 */
public class ProjectTreeVo implements Serializable {
    private String id;
 
    private String key;
 
    private String value;
 
    private String title;
 
    private Integer type;   //树的类型  1-项目组  2-项目
 
    private boolean isLeaf;
    private String xmmc;
    private String xmbh;
 
    List<ProjectTreeVo> children;
    private Map<String,Object> scopedSlots;
 
 
    public List<ProjectTreeVo> getChildren() {
        return children;
    }
 
    public void setChildren(List<ProjectTreeVo> children) {
        this.children = children;
    }
 
    public ProjectTreeVo() {
    }
 
    public ProjectTreeVo(ProProject project) {
        this.key = project.getId();
        this.value = project.getId();
        this.title = project.getXmmc();
        this.id = project.getId();
        this.xmmc = project.getXmmc();
        this.xmbh = project.getXmbh();
 
    }
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public boolean isLeaf() {
        return isLeaf;
    }
 
    public void setLeaf(boolean leaf) {
        isLeaf = leaf;
    }
 
    public String getXmmc() {
        return xmmc;
    }
 
    public void setXmmc(String xmmc) {
        this.xmmc = xmmc;
    }
 
    public String getXmbh() {
        return xmbh;
    }
 
    public void setXmbh(String xmbh) {
        this.xmbh = xmbh;
    }
 
    public Map<String, Object> getScopedSlots() {
        return scopedSlots;
    }
 
    public void setScopedSlots(Map<String, Object> scopedSlots) {
        this.scopedSlots = scopedSlots;
    }
}