cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.web.service.cmdb;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
public class CICategory {
 
    //所属层级
    private Integer level;
    
    //所属分类
    private Map category = new HashMap();
    
    //一级分类
    private Map firstCategory = new HashMap();
    
    //二级分类
    private Map secondCategory = new HashMap();
    
    //三级分类
    private Map thirdCategory = new HashMap();
    
    
    public Integer getLevel() {
        return level;
    }
    
    public void setLevel(Integer level) {
        this.level = level;
    }
    
    public Map getCategory() {
        return category;
    }
    
    public void setCategory(Map category) {
        this.category = category;
    }
    
    public Map getFirstCategory() {
        return firstCategory;
    }
 
    public void setFirstCategory(Map firstCategory) {
        this.firstCategory = firstCategory;
    }
 
    public Map getSecondCategory() {
        return secondCategory;
    }
 
    public void setSecondCategory(Map secondCategory) {
        this.secondCategory = secondCategory;
    }
 
    public Map getThirdCategory() {
        return thirdCategory;
    }
 
    public void setThirdCategory(Map thirdCategory) {
        this.thirdCategory = thirdCategory;
    }
}