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.PLAction; /** * 分类树节点对象 * @author VCI-STGK006 * */ public class ExportPLActionBean extends BaseExportNode implements Serializable{ /** * */ private static final long serialVersionUID = 1L; public ExportPLActionBean(PLAction pa) { super.setLeaf(IS_LEAF); this.setBean(pa); } public PLAction getBean() { return (PLAction)this.bean; } @Override public String toString() { if( getBean()!= null ) { String title = getBean().plCode+"/"+getBean().plName; if(this.getMessage() != null){ title += this.getMessage() ; } return title; } return ""; } }