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.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 "";
| }
| }
|
|