package com.vci.client.portal.NewNewUI.actionmng;
|
|
import com.vci.corba.portal.data.PLActionParam;
|
|
/**
|
* 参数列表对象
|
* @author VCI-STGK006
|
*
|
*/
|
public class ClientPLActionParam {
|
PLActionParam pap = null;
|
|
public ClientPLActionParam(PLActionParam pap) {
|
this.pap = pap;
|
}
|
|
public PLActionParam getPap() {
|
return pap;
|
}
|
|
public void setPap(PLActionParam pap) {
|
this.pap = pap;
|
}
|
|
@Override
|
public String toString() {
|
if(this.pap != null) {
|
return this.pap.name;
|
}
|
return "";
|
}
|
}
|