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 | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 58 insertions(+), 0 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 9064f2f..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,5 +1,8 @@ package com.product.mobile.core.entity; +import java.util.List; +import java.util.Map; + /** * @Author cheng * @Date 2024/8/15 11:12 @@ -67,6 +70,21 @@ private String serialNumber; private String organizationType; + + /** + * 瀛愯〃鍏佽鏂板 + */ + private Boolean allowAdd; + /** + * 瀛愯〃鍏佽鍒犻櫎 + */ + private Boolean allowDelete; + /** + * 瀛愯〃琛ㄥ悕 褰� component = 'subTable' 鐨勬椂鍊欐湁鍊� + */ + private String subTableName; + + private List<FaceFieldEntity> subField; public String getFieldName() { @@ -172,4 +190,44 @@ 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