package com.vci.client.oq.ui.export;
|
|
import java.io.Serializable;
|
|
import com.vci.client.portal.NewNewUI.Export.BaseExportNode;
|
import com.vci.corba.omd.qtm.QTInfo;
|
|
/**
|
* 分类树节点对象
|
* @author VCI-STGK006
|
*
|
*/
|
public class QTExportQTNode extends BaseExportNode implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
public QTExportQTNode(QTInfo pa) {
|
super.setLeaf(IS_LEAF);
|
this.setBean(pa);
|
}
|
|
public QTInfo getBean() {
|
|
return (QTInfo)this.bean;
|
}
|
|
@Override
|
public String toString() {
|
if(getBean()!= null ) {
|
String title = getBean().qtName;
|
if(this.getMessage() != null){
|
title += this.getMessage() ;
|
}
|
return title;
|
}
|
return "";
|
}
|
|
}
|