ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.vci.server.portal.entity;
 
import java.io.Serializable;
 
import com.vci.common.objects.AbstractHistorizable;
 
/**
 * 按钮参数对象
 * @author VCI-STGK006
 *
 */
public class PLActionParamEntity extends AbstractHistorizable implements Serializable{
    
    /**
     * serialVersionUID
     */
    private static final long serialVersionUID = 952652357001409277L;
    /**
     * id
     */
    private String oid = "";
    /**
     * 参数名称
     */
    private String name = "";
    /**
     * 参数默认值
     */
    private String defaultValue = "";
    /**
     * 参数描述
     */
    private String description = "";
    
    /**
     * 所属action
     */
    private String action = "";
    
    public String getOid() {
        return oid;
    }
    public void setOid(String oid) {
        this.oid = oid;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getDefaultValue() {
        return defaultValue;
    }
    public void setDefaultValue(String defaultValue) {
        this.defaultValue = defaultValue;
    }
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }
    
    public String getAction() {
        return action;
    }
    public void setAction(String action) {
        this.action = action;
    }
//    public String getNotNullString(String str) {
//        if(str == null) {
//            return "";
//        } 
//        return str.trim();
//    }
//    
    @Override
    public String getId() {
        return this.oid;
    }
}