package com.qianwen.smartman.modules.system.dto;
|
|
import java.util.List;
|
import com.qianwen.smartman.modules.system.entity.CustomTemplateFieldOption;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/CustomTemplateColumnDTO.class */
|
public class CustomTemplateColumnDTO {
|
private Long templateId;
|
private String templateName;
|
private Long fieldId;
|
private String fieldCode;
|
private String modifyFieldCode;
|
private String queryFieldCode;
|
private Integer sort;
|
private String fieldName;
|
private String fieldDescription;
|
private Integer fieldType;
|
private String defaultValue;
|
private String propertyJson;
|
private Integer mustField;
|
private Integer systemField;
|
private Integer sysFieldMust;
|
private Integer supportQuery;
|
private Integer supportUpdate;
|
private Integer supportExport;
|
private List<CustomTemplateFieldOption> optionList;
|
|
public void setTemplateId(final Long templateId) {
|
this.templateId = templateId;
|
}
|
|
public void setTemplateName(final String templateName) {
|
this.templateName = templateName;
|
}
|
|
public void setFieldId(final Long fieldId) {
|
this.fieldId = fieldId;
|
}
|
|
public void setFieldCode(final String fieldCode) {
|
this.fieldCode = fieldCode;
|
}
|
|
public void setModifyFieldCode(final String modifyFieldCode) {
|
this.modifyFieldCode = modifyFieldCode;
|
}
|
|
public void setQueryFieldCode(final String queryFieldCode) {
|
this.queryFieldCode = queryFieldCode;
|
}
|
|
public void setSort(final Integer sort) {
|
this.sort = sort;
|
}
|
|
public void setFieldName(final String fieldName) {
|
this.fieldName = fieldName;
|
}
|
|
public void setFieldDescription(final String fieldDescription) {
|
this.fieldDescription = fieldDescription;
|
}
|
|
public void setFieldType(final Integer fieldType) {
|
this.fieldType = fieldType;
|
}
|
|
public void setDefaultValue(final String defaultValue) {
|
this.defaultValue = defaultValue;
|
}
|
|
public void setPropertyJson(final String propertyJson) {
|
this.propertyJson = propertyJson;
|
}
|
|
public void setMustField(final Integer mustField) {
|
this.mustField = mustField;
|
}
|
|
public void setSystemField(final Integer systemField) {
|
this.systemField = systemField;
|
}
|
|
public void setSysFieldMust(final Integer sysFieldMust) {
|
this.sysFieldMust = sysFieldMust;
|
}
|
|
public void setSupportQuery(final Integer supportQuery) {
|
this.supportQuery = supportQuery;
|
}
|
|
public void setSupportUpdate(final Integer supportUpdate) {
|
this.supportUpdate = supportUpdate;
|
}
|
|
public void setSupportExport(final Integer supportExport) {
|
this.supportExport = supportExport;
|
}
|
|
public void setOptionList(final List<CustomTemplateFieldOption> optionList) {
|
this.optionList = optionList;
|
}
|
|
public String toString() {
|
return "CustomTemplateColumnDTO(templateId=" + getTemplateId() + ", templateName=" + getTemplateName() + ", fieldId=" + getFieldId() + ", fieldCode=" + getFieldCode() + ", modifyFieldCode=" + getModifyFieldCode() + ", queryFieldCode=" + getQueryFieldCode() + ", sort=" + getSort() + ", fieldName=" + getFieldName() + ", fieldDescription=" + getFieldDescription() + ", fieldType=" + getFieldType() + ", defaultValue=" + getDefaultValue() + ", propertyJson=" + getPropertyJson() + ", mustField=" + getMustField() + ", systemField=" + getSystemField() + ", sysFieldMust=" + getSysFieldMust() + ", supportQuery=" + getSupportQuery() + ", supportUpdate=" + getSupportUpdate() + ", supportExport=" + getSupportExport() + ", optionList=" + getOptionList() + ")";
|
}
|
|
public Long getTemplateId() {
|
return this.templateId;
|
}
|
|
public String getTemplateName() {
|
return this.templateName;
|
}
|
|
public Long getFieldId() {
|
return this.fieldId;
|
}
|
|
public String getFieldCode() {
|
return this.fieldCode;
|
}
|
|
public String getModifyFieldCode() {
|
return this.modifyFieldCode;
|
}
|
|
public String getQueryFieldCode() {
|
return this.queryFieldCode;
|
}
|
|
public Integer getSort() {
|
return this.sort;
|
}
|
|
public String getFieldName() {
|
return this.fieldName;
|
}
|
|
public String getFieldDescription() {
|
return this.fieldDescription;
|
}
|
|
public Integer getFieldType() {
|
return this.fieldType;
|
}
|
|
public String getDefaultValue() {
|
return this.defaultValue;
|
}
|
|
public String getPropertyJson() {
|
return this.propertyJson;
|
}
|
|
public Integer getMustField() {
|
return this.mustField;
|
}
|
|
public Integer getSystemField() {
|
return this.systemField;
|
}
|
|
public Integer getSysFieldMust() {
|
return this.sysFieldMust;
|
}
|
|
public Integer getSupportQuery() {
|
return this.supportQuery;
|
}
|
|
public Integer getSupportUpdate() {
|
return this.supportUpdate;
|
}
|
|
public Integer getSupportExport() {
|
return this.supportExport;
|
}
|
|
public List<CustomTemplateFieldOption> getOptionList() {
|
return this.optionList;
|
}
|
}
|