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
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
package org.yeshi.utils.generater.vo.xmlconfig.admin.form;
 
import org.yeshi.utils.generater.annotation.admin.form.Text;
import org.yeshi.utils.generater.vo.xmlconfig.base.FormComponent;
import org.yeshi.utils.generater.vo.xmlconfig.base.VerifyData;
 
/**
 * @author hxh
 * @title: FormComponentText
 * @description: 表单组件之文本组件
 * @date 2022/3/28 12:13
 */
public class FormComponentText extends FormComponent {
    private String desc;
    private String dateFormat;
    private Integer maxLength;
    private Integer minLength;
    private Text.Type inputType;
    private String placeHolder;
    private boolean isTextArea;
    private VerifyData verify;
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public String getDateFormat() {
        return dateFormat;
    }
 
    public void setDateFormat(String dateFormat) {
        this.dateFormat = dateFormat;
    }
 
    public Integer getMaxLength() {
        return maxLength;
    }
 
    public void setMaxLength(Integer maxLength) {
        this.maxLength = maxLength;
    }
 
    public Integer getMinLength() {
        return minLength;
    }
 
    public void setMinLength(Integer minLength) {
        this.minLength = minLength;
    }
 
    public Text.Type getInputType() {
        return inputType;
    }
 
    public void setInputType(Text.Type inputType) {
        this.inputType = inputType;
    }
 
    public String getPlaceHolder() {
        return placeHolder;
    }
 
    public void setPlaceHolder(String placeHolder) {
        this.placeHolder = placeHolder;
    }
 
    public boolean isTextArea() {
        return isTextArea;
    }
 
    public void setTextArea(boolean textArea) {
        isTextArea = textArea;
    }
 
    public VerifyData getVerify() {
        return verify;
    }
 
    public void setVerify(VerifyData verify) {
        this.verify = verify;
    }
}