From 6aa3771424b2b947446ec679aa5648712e4742ae Mon Sep 17 00:00:00 2001 From: 许鹏程 <1821349743@qq.com> Date: 星期一, 23 九月 2024 17:04:49 +0800 Subject: [PATCH] 移动端获取表单组件字段,修正子表获取字段 --- src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java | 171 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 166 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java b/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java index 0e31fae..840e556 100644 --- a/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java +++ b/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java @@ -1,11 +1,16 @@ package com.product.mobile.core.entity; +import java.util.List; +import java.util.Map; + /** * @Author cheng * @Date 2024/8/15 11:12 * @Desc */ public class FaceFieldEntity { + + private String fieldName; /** * 鏄惁蹇呭~ @@ -38,7 +43,7 @@ /** * 榛樿鍊� */ - private String defaultValue; + private Object defaultValue; /** * 鎻愮ず淇℃伅 @@ -55,10 +60,6 @@ private String fileField; /** - * 鎺т欢鎺掑簭 - */ - private Integer controlSequence; - /** * 楂樼骇鍙傜収鍏宠仈璁剧疆 */ private String promptSetting; @@ -68,5 +69,165 @@ */ private String serialNumber; + private String organizationType; + /** + * 瀛愯〃鍏佽鏂板 + */ + private Boolean allowAdd; + /** + * 瀛愯〃鍏佽鍒犻櫎 + */ + private Boolean allowDelete; + /** + * 瀛愯〃琛ㄥ悕 褰� component = 'subTable' 鐨勬椂鍊欐湁鍊� + */ + private String subTableName; + + private List<FaceFieldEntity> subField; + + + public String getFieldName() { + return fieldName; + } + + public void setFieldName(String fieldName) { + this.fieldName = fieldName; + } + + public String getRequired() { + return required; + } + + public void setRequired(String required) { + this.required = required; + } + + public String getLabel() { + return label; + } + + public void setLabel(String label) { + this.label = label; + } + + public String getAdvanceName() { + return advanceName; + } + + public void setAdvanceName(String advanceName) { + this.advanceName = advanceName; + } + + public String getComponentType() { + return componentType; + } + + public void setComponentType(String componentType) { + this.componentType = componentType; + } + + public String getMultiple() { + return multiple; + } + + public void setMultiple(String multiple) { + this.multiple = multiple; + } + + public String getDisabled() { + return disabled; + } + + public void setDisabled(String disabled) { + this.disabled = disabled; + } + + public Object getDefaultValue() { + return defaultValue; + } + + public void setDefaultValue(Object defaultValue) { + this.defaultValue = defaultValue; + } + + public String getPlaceholder() { + return placeholder; + } + + public void setPlaceholder(String placeholder) { + this.placeholder = placeholder; + } + + public String getFileTableName() { + return fileTableName; + } + + public void setFileTableName(String fileTableName) { + this.fileTableName = fileTableName; + } + + public String getFileField() { + return fileField; + } + + public void setFileField(String fileField) { + this.fileField = fileField; + } + + public String getPromptSetting() { + return promptSetting; + } + + public void setPromptSetting(String promptSetting) { + this.promptSetting = promptSetting; + } + + public String getSerialNumber() { + return serialNumber; + } + + public void setSerialNumber(String serialNumber) { + this.serialNumber = serialNumber; + } + + public String getOrganizationType() { + return organizationType; + } + + public void setOrganizationType(String organizationType) { + this.organizationType = organizationType; + } + + public Boolean getAllowAdd() { + return allowAdd; + } + + public void setAllowAdd(Boolean allowAdd) { + this.allowAdd = allowAdd; + } + + public Boolean getAllowDelete() { + return allowDelete; + } + + public void setAllowDelete(Boolean allowDelete) { + this.allowDelete = allowDelete; + } + + public String getSubTableName() { + return subTableName; + } + + public void setSubTableName(String subTableName) { + this.subTableName = subTableName; + } + + public List<FaceFieldEntity> getSubField() { + return subField; + } + + public void setSubField(List<FaceFieldEntity> subField) { + this.subField = subField; + } } -- Gitblit v1.9.2