package com.vci.client.portal.NewNewUI.actionExport;
|
|
import java.io.Serializable;
|
|
import com.vci.client.portal.NewNewUI.Export.BaseExportNode;
|
import com.vci.corba.portal.data.PLActionCls;
|
|
/**
|
* 分类树节点对象
|
* @author VCI-STGK006
|
*
|
*/
|
public class ExportPLActionClsBean extends BaseExportNode implements Serializable {
|
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
public ExportPLActionClsBean(PLActionCls pac) {
|
this.setBean(pac);
|
this.setLeaf(IS_NOT_LEAF);
|
}
|
|
|
@Override
|
public String toString() {
|
if( getBean() != null) {
|
String title = getBean().name;
|
if(this.getMessage() != null){
|
title += this.getMessage();
|
}
|
return title;
|
}
|
return "";
|
}
|
|
@Override
|
public PLActionCls getBean() {
|
return (PLActionCls)this.bean;
|
}
|
}
|