package cn.ksource.web.service.cmdb;
|
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
public class DSLCategory {
|
|
//所属层级
|
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;
|
}
|
}
|