shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.iplatform.model.vo;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
import java.io.Serializable;
import java.util.List;
 
@JsonIgnoreProperties(ignoreUnknown = true)
public class ConfigFormItemConfigVo implements Serializable {
 
    public String getLabel() {
        return label;
    }
 
    public void setLabel(String label) {
        this.label = label;
    }
 
    public String getShowLabel() {
        return showLabel;
    }
 
    public void setShowLabel(String showLabel) {
        this.showLabel = showLabel;
    }
 
    public String getChangeTag() {
        return changeTag;
    }
 
    public void setChangeTag(String changeTag) {
        this.changeTag = changeTag;
    }
 
    public String getLabelWidth() {
        return labelWidth;
    }
 
    public void setLabelWidth(String labelWidth) {
        this.labelWidth = labelWidth;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getTagIcon() {
        return tagIcon;
    }
 
    public void setTagIcon(String tagIcon) {
        this.tagIcon = tagIcon;
    }
 
    public String getSpan() {
        return span;
    }
 
    public void setSpan(String span) {
        this.span = span;
    }
 
    public String getLayout() {
        return layout;
    }
 
    public void setLayout(String layout) {
        this.layout = layout;
    }
 
    public Boolean getRequired() {
        return required;
    }
 
    public void setRequired(Boolean required) {
        this.required = required;
    }
 
    public List<ConfigFormItemConfigRegListVo> getRegList() {
        return regList;
    }
 
    public void setRegList(List<ConfigFormItemConfigRegListVo> regList) {
        this.regList = regList;
    }
 
    public String getDocument() {
        return document;
    }
 
    public void setDocument(String document) {
        this.document = document;
    }
 
    public String getFormId() {
        return formId;
    }
 
    public void setFormId(String formId) {
        this.formId = formId;
    }
 
    public String getRenderKey() {
        return renderKey;
    }
 
    public void setRenderKey(String renderKey) {
        this.renderKey = renderKey;
    }
 
    public String getDefaultValue() {
        return defaultValue;
    }
 
    public void setDefaultValue(String defaultValue) {
        this.defaultValue = defaultValue;
    }
 
    private String label;
 
//    @ApiModelProperty(value = "")
    private String showLabel;
 
    private String changeTag;
 
    private String labelWidth;
 
    private String tag;
 
    private String tagIcon;
 
    private String span;
 
    private String layout;
 
    private Boolean required;
 
//    @ApiModelProperty(value = "验证规则")
    private List<ConfigFormItemConfigRegListVo> regList;
 
    private String document;
 
    private String formId;
 
    private String renderKey;
 
    private String defaultValue;
}