@Title(value="属于")
@Transient
public String getBelong() {
DataDictCatalog catalog=this.catalog;
while(catalog!=null){
belong=catalog.getName()+"-"+belong;
catalog=catalog.getParent();
}
belong=belong.substring(0,belong.length()-1);
return belong;
}