zj
2024-08-02 815342ea90c689561adeecca3230b5b5f8ddc2b7
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
package project.web.admin.service.user;
 
import java.io.Serializable;
import java.util.List;
import java.util.Map;
 
public class AgentNodes implements Serializable {
    private static final long serialVersionUID = -279469351490108330L;
    private String tags;
    private String text;
    private String href;
    private String backColor;
    private String color;
    private Map<String, Object> state;
    private List<AgentNodes> nodes;
 
    public String getTags() {
        return this.tags;
    }
 
    public void setTags(String tags) {
        this.tags = tags;
    }
 
    public String getText() {
        return this.text;
    }
 
    public void setText(String text) {
        this.text = text;
    }
 
    public String getHref() {
        return this.href;
    }
 
    public void setHref(String href) {
        this.href = href;
    }
 
    public List<AgentNodes> getNodes() {
        return this.nodes;
    }
 
    public void setNodes(List<AgentNodes> nodes) {
        this.nodes = nodes;
    }
 
    public String getBackColor() {
        return this.backColor;
    }
 
    public void setBackColor(String backColor) {
        this.backColor = backColor;
    }
 
    public String getColor() {
        return this.color;
    }
 
    public void setColor(String color) {
        this.color = color;
    }
 
    public Map<String, Object> getState() {
        return this.state;
    }
 
    public void setState(Map<String, Object> state) {
        this.state = state;
    }
}