admin
2022-03-29 fac5d01bfcddfc8edef0a5fd3d401b1fe383fe16
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
package org.yeshi.utils.generater.vo.xmlconfig.base;
 
/**
 * @author hxh
 * @title: EditComponent
 * @description: 表单组件
 * @date 2022/3/28 12:12
 */
public class FormComponent {
    private boolean enable;
    private String notify;
    private String desc;
 
    public boolean isEnable() {
        return enable;
    }
 
    public void setEnable(boolean enable) {
        this.enable = enable;
    }
 
    public String getNotify() {
        return notify;
    }
 
    public void setNotify(String notify) {
        this.notify = notify;
    }
 
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
}