From eaa5216743b873e7c8ac37ad952776401a951f82 Mon Sep 17 00:00:00 2001
From: 6c <420680616@qq.com>
Date: 星期六, 11 十月 2025 11:46:02 +0800
Subject: [PATCH] 移动端加载mvc
---
src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java | 65 ++++++++++++++++++++++++++------
1 files changed, 52 insertions(+), 13 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 4afe58e..94bbfaa 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,7 @@
package com.product.mobile.core.entity;
+import com.alibaba.fastjson.JSONArray;
+
import java.util.List;
import java.util.Map;
import java.util.HashMap;
@@ -10,7 +12,7 @@
* @Desc
*/
public class FaceFieldEntity {
-
+
private String table;
private String field;
@@ -90,15 +92,32 @@
private List<FaceFieldEntity> subField;
private String type;
-
+
private String length;
+ /**
+ * 闅愯棌 1=鏄紝0=鍚�
+ */
+ private String hidden;
+
+ private JSONArray showComponentFilter;
+
+
+ public String getHidden() {
+ return hidden;
+ }
+
+
+ public void setHidden(String hidden) {
+ this.hidden = hidden;
+ }
+
private Map<String, Object> otherParams = new HashMap<>();
-
+
public String getType() {
return type;
}
-
+
public String getLength() {
return length;
@@ -257,20 +276,40 @@
public void setSubField(List<FaceFieldEntity> subField) {
this.subField = subField;
}
- public String getTable() {
+
+ public String getTable() {
return table;
}
public void setTable(String tableUuid) {
this.table = tableUuid;
}
+
public Map<String, Object> getOtherParams() {
- return otherParams;
- }
- public void setOtherParams(Map<String, Object> otherParams) {
- this.otherParams = otherParams;
- }
- public Object putOtherParam(String key, Object value) {
- return otherParams.put(key, value);
- }
+ return otherParams;
+ }
+
+ public void setOtherParams(Map<String, Object> otherParams) {
+ this.otherParams = otherParams;
+ }
+
+ public Object putOtherParam(String key, Object value) {
+ return otherParams.put(key, value);
+ }
+
+ public JSONArray getShowComponentFilter() {
+ return showComponentFilter;
+ }
+
+ public void setShowComponentFilter(JSONArray showComponentFilter) {
+ this.showComponentFilter = showComponentFilter;
+ }
+
+ public void addShowComponentFilter(JSONArray showComponentFilter){
+ if(this.showComponentFilter == null){
+ this.showComponentFilter = showComponentFilter;
+ }else{
+ this.showComponentFilter.addAll(showComponentFilter);
+ }
+ }
}
--
Gitblit v1.9.2