ludc
2023-04-07 7df1d61319149a666e8b2801a3c89c1d80900d2e
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package com.vci.ubcs.code.vo.pagemodel;
 
import com.vci.ubcs.code.vo.pagemodel.BaseModelVO;
 
/**
 * 主数据中的按钮扩展显示对象
 *
 * @author weidy
 * @date 2022-01-24
 */
public class CodeButtonVO extends BaseModelVO {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 4615707118774202884L;
 
    /**
    * 按钮的图标样式
    */
    private String iconcls;
 
 
    /**
    * 执行的js内容
    */
    private String executejs;
 
 
    /**
    * 按钮的位置
    */
    private String usedpositiontype;
 
 
    /**
    * 按钮的位置显示文本
    */
    private String usedpositiontypeText;
 
    /**
     * 获取 按钮的图标样式
     */
    public String getIconcls (){
        return iconcls;
    }
 
    /**
    * 设置 按钮的图标样式
    */
    public void setIconcls (String iconcls){
        this.iconcls = iconcls;
    }
    /**
     * 获取 执行的js内容
     */
    public String getExecutejs (){
        return executejs;
    }
 
    /**
    * 设置 执行的js内容
    */
    public void setExecutejs (String executejs){
        this.executejs = executejs;
    }
    /**
     * 获取 按钮的位置
     */
    public String getUsedpositiontype (){
        return usedpositiontype;
    }
 
    /**
    * 设置 按钮的位置
    */
    public void setUsedpositiontype (String usedpositiontype){
        this.usedpositiontype = usedpositiontype;
    }
 
    public String getUsedpositiontypeText() {
        return usedpositiontypeText;
    }
 
    public void setUsedpositiontypeText(String usedpositiontypeText) {
        this.usedpositiontypeText = usedpositiontypeText;
    }
 
    @Override
    public String toString() {
        return "CodeButtonVO{" +
                "iconcls='" + iconcls + '\'' +
                ", executejs='" + executejs + '\'' +
                ", usedpositiontype='" + usedpositiontype + '\'' +
                ", usedpositiontypeText='" + usedpositiontypeText + '\'' +
                "} " + super.toString();
    }
}