From 04345420e457ccffcfc94646fde4f5a2204164c3 Mon Sep 17 00:00:00 2001
From: 6c <420680616@qq.com>
Date: 星期三, 15 十月 2025 10:31:18 +0800
Subject: [PATCH] 移动端加载mvc
---
src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 56 insertions(+), 4 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 04c68bf..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,6 +1,10 @@
package com.product.mobile.core.entity;
+import com.alibaba.fastjson.JSONArray;
+
import java.util.List;
+import java.util.Map;
+import java.util.HashMap;
/**
* @Author cheng
@@ -8,7 +12,7 @@
* @Desc
*/
public class FaceFieldEntity {
-
+
private String table;
private String field;
@@ -88,13 +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;
@@ -253,11 +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);
+ }
+
+ 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