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
package cn.ksource.web.service.cmdb;
 
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
 
/**
 * @author Administrator
 * 子CI元数据
 */
public class SUBCIPropertityMetadata {
 
    //所属分类信息
    private Map catetory = new HashMap();
    
    //通用属性元数据
    private List<Map> commonPropertityMetadata = new LinkedList<Map>();
    
    /**
     * 自定义属性元数据
     */
    private List<Map> customPropertityMetadata = new LinkedList<Map>();
    
    public Map getCatetory() {
        return catetory;
    }
    
    public void setCatetory(Map catetory) {
        this.catetory = catetory;
    }
    
    public List<Map> getCommonPropertityMetadata() {
        return commonPropertityMetadata;
    }
    
    public void setCommonPropertityMetadata(List<Map> commonPropertityMetadata) {
        this.commonPropertityMetadata = commonPropertityMetadata;
    }
    
    public List<Map> getCustomPropertityMetadata() {
        return customPropertityMetadata;
    }
    
    public void setCustomPropertityMetadata(List<Map> customPropertityMetadata) {
        this.customPropertityMetadata = customPropertityMetadata;
    }
    
    
}