package com.vci.server.query.refquery.objects;
|
|
import com.vci.corba.omd.atm.AttribItem;
|
import com.vci.corba.omd.btm.BtmItem;
|
import com.vci.corba.omd.ltm.LinkType;
|
|
|
public class MetaData {
|
// 参照层次
|
private Integer level;
|
|
// 属性定义信息
|
private AttribItem attribItem;
|
// 类型定义信息
|
private BtmItem refType;
|
// 链接定义信息
|
private LinkType refLink;
|
// 是否是业务类型
|
private boolean isType;
|
|
private int queryEnum;
|
|
public int getQueryEnum() {
|
return queryEnum;
|
}
|
|
public void setQueryEnum(int queryEnum) {
|
this.queryEnum = queryEnum;
|
}
|
|
public boolean isType() {
|
return isType;
|
}
|
|
public void setType(boolean isType) {
|
this.isType = isType;
|
}
|
|
public LinkType getRefLink() {
|
return refLink;
|
}
|
|
public void setRefLink(LinkType refLink) {
|
this.refLink = refLink;
|
}
|
|
public void setRefType(BtmItem refType) {
|
this.refType = refType;
|
}
|
|
public void setAttribItem(AttribItem attribItem) {
|
this.attribItem = attribItem;
|
}
|
|
public Integer getLevel() {
|
return level;
|
}
|
|
public void setLevel(Integer level) {
|
this.level = level;
|
}
|
|
public BtmItem getRefType() {
|
return refType;
|
}
|
|
public AttribItem getAttributeDef() {
|
return attribItem;
|
}
|
|
}
|