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
65
66
67
68
69
70
71
72
package cn.ksource.web.service.cmdb;
 
import java.util.HashMap;
import java.util.Map;
 
/**
 * @author Administrator
 * 子CI属性
 */
public class SUBCIPropertity {
 
    //CI的ID
    private String ci_id;
    
    private Map attr = new HashMap();
    
    //基本属性
    private Map basePropertity = new HashMap();
    
    //通用属性
    private Map commonPropertity = new HashMap();
    
    //自定义属性
    private Map customPropertity = new HashMap();
    
    //所属分类信息
    private CICategory category;
    
    //元数据信息
    private SUBCIPropertityMetadata meta;
    
    public SUBCIPropertityMetadata getMeta() {
        return meta;
    }
    
    public void setMeta(SUBCIPropertityMetadata meta) {
        this.meta = meta;
    }
    
    
    public CICategory getCategory() {
        return category;
    }
    
    public void setCategory(CICategory category) {
        this.category = category;
    }
    
    public Map getBasePropertity() {
        return basePropertity;
    }
    
    public void setBasePropertity(Map basePropertity) {
        this.basePropertity = basePropertity;
    }
    
    public Map getCommonPropertity() {
        return commonPropertity;
    }
    
    public void setCommonPropertity(Map commonPropertity) {
        this.commonPropertity = commonPropertity;
    }
    public Map getCustomPropertity() {
        return customPropertity;
    }
    
    public void setCustomPropertity(Map customPropertity) {
        this.customPropertity = customPropertity;
    }
    
}