package com.vci.client.portal.NewNewUI.actionmng; import com.vci.corba.portal.data.PLActionCls; /** * 分类树节点对象 * @author VCI-STGK006 * */ public class ClientPLActionCls { PLActionCls pac = null; public ClientPLActionCls(PLActionCls pac) { this.pac = pac; } public PLActionCls getPac() { return pac; } public void setPac(PLActionCls pac) { this.pac = pac; } @Override public String toString() { if(this.pac != null) { return this.pac.name; } return ""; } }