ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package org.springblade.code.vo.pagemodel;
 
import com.vci.starter.web.pagemodel.BaseModelVO;
 
/**
 * 主题库里模板包含的按钮显示对象
 *
 * @author weidy
 * @date 2022-01-24
 */
public class CodeClassifyTemplateButtonVO extends BaseModelVO {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 4615707118535405378L;
 
    /**
    * 所属模板
    */
    private String classifytemplateoid;
 
    /**
    * 所属模板显示文本
    */
    private String classifytemplateoidName;
 
    /**
    * 按钮的主键
    */
    private String classifybuttonoid;
 
    /**
    * 按钮的主键显示文本
    */
    private String classifybuttonoidName;
 
    /**
    * 按钮用途
    */
    private String buttonuse;
 
    /**
     * 按钮用途显示对象
     */
    private String buttonUseText;
 
 
    /**
    * 码值序号
    */
    private Integer ordernum;
 
    /**
     * 按钮的相关内容
     */
    private CodeButtonVO buttonVO;
 
 
 
 
    /**
     * 获取 所属模板
     */
    public String getClassifytemplateoid (){
        return classifytemplateoid;
    }
 
    /**
    * 设置 所属模板
    */
    public void setClassifytemplateoid (String classifytemplateoid){
        this.classifytemplateoid = classifytemplateoid;
    }
    /**
     * 获取所属模板显示文本
     */
    public String getClassifytemplateoidName (){
        return classifytemplateoidName;
    }
 
    /**
    * 设置所属模板显示文本
    */
    public void setClassifytemplateoidName (String classifytemplateoidName){
        this.classifytemplateoidName = classifytemplateoidName;
    }
    /**
     * 获取 按钮的主键
     */
    public String getClassifybuttonoid (){
        return classifybuttonoid;
    }
 
    /**
    * 设置 按钮的主键
    */
    public void setClassifybuttonoid (String classifybuttonoid){
        this.classifybuttonoid = classifybuttonoid;
    }
    /**
     * 获取按钮的主键显示文本
     */
    public String getClassifybuttonoidName (){
        return classifybuttonoidName;
    }
 
    /**
    * 设置按钮的主键显示文本
    */
    public void setClassifybuttonoidName (String classifybuttonoidName){
        this.classifybuttonoidName = classifybuttonoidName;
    }
    /**
     * 获取 按钮用途
     */
    public String getButtonuse (){
        return buttonuse;
    }
 
    /**
    * 设置 按钮用途
    */
    public void setButtonuse (String buttonuse){
        this.buttonuse = buttonuse;
    }
    /**
     * 获取 码值序号
     */
    public Integer getOrdernum (){
        return ordernum;
    }
 
    /**
    * 设置 码值序号
    */
    public void setOrdernum (Integer ordernum){
        this.ordernum = ordernum;
    }
 
    public String getButtonUseText() {
        return buttonUseText;
    }
 
    public void setButtonUseText(String buttonUseText) {
        this.buttonUseText = buttonUseText;
    }
 
    public CodeButtonVO getButtonVO() {
        return buttonVO;
    }
 
    public void setButtonVO(CodeButtonVO buttonVO) {
        this.buttonVO = buttonVO;
    }
 
    @Override
    public String toString() {
        return "CodeClassifyTemplateButtonVO{" +
                "classifytemplateoid='" + classifytemplateoid + '\'' +
                ", classifytemplateoidName='" + classifytemplateoidName + '\'' +
                ", classifybuttonoid='" + classifybuttonoid + '\'' +
                ", classifybuttonoidName='" + classifybuttonoidName + '\'' +
                ", buttonuse='" + buttonuse + '\'' +
                ", buttonUseText='" + buttonUseText + '\'' +
                ", ordernum=" + ordernum +
                ", buttonVO=" + buttonVO +
                "} " + super.toString();
    }
}