wangting
2025-01-16 18c43123b51a1688ab4ae01fe3d171c7d92e619b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 "";
    }
}