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; } }