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;
|
}
|