com.fasc.open.api.bean.common.FieldIdCard Maven / Gradle / Ivy
The newest version!
package com.fasc.open.api.bean.common;
public class FieldIdCard {
private Boolean required;
private String defaultValue;
private String tips;
private Integer width;
private Integer height;
private String fontType;
private Integer fontSize;
private String alignment;
private Boolean autofill;
public Boolean getAutofill() {
return autofill;
}
public void setAutofill(Boolean autofill) {
this.autofill = autofill;
}
public Boolean getRequired() {
return required;
}
public void setRequired(Boolean required) {
this.required = required;
}
public String getDefaultValue() {
return defaultValue;
}
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
public String getTips() {
return tips;
}
public void setTips(String tips) {
this.tips = tips;
}
public Integer getWidth() {
return width;
}
public void setWidth(Integer width) {
this.width = width;
}
public Integer getHeight() {
return height;
}
public void setHeight(Integer height) {
this.height = height;
}
public String getFontType() {
return fontType;
}
public void setFontType(String fontType) {
this.fontType = fontType;
}
public Integer getFontSize() {
return fontSize;
}
public void setFontSize(Integer fontSize) {
this.fontSize = fontSize;
}
public String getAlignment() {
return alignment;
}
public void setAlignment(String alignment) {
this.alignment = alignment;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy