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 commonPropertityMetadata = new LinkedList(); /** * 自定义属性元数据 */ private List customPropertityMetadata = new LinkedList(); public Map getCatetory() { return catetory; } public void setCatetory(Map catetory) { this.catetory = catetory; } public List getCommonPropertityMetadata() { return commonPropertityMetadata; } public void setCommonPropertityMetadata(List commonPropertityMetadata) { this.commonPropertityMetadata = commonPropertityMetadata; } public List getCustomPropertityMetadata() { return customPropertityMetadata; } public void setCustomPropertityMetadata(List customPropertityMetadata) { this.customPropertityMetadata = customPropertityMetadata; } }