许鹏程
2025-01-22 e616e2f0a90fb155ad67495d27bd5057a23cbf43
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;
@@ -98,6 +100,8 @@
    */
   private String hidden;
   
   private JSONArray showComponentFilter;
   public String getHidden() {
      return hidden;
@@ -107,6 +111,7 @@
   public void setHidden(String hidden) {
      this.hidden = hidden;
   }
   private Map<String, Object> otherParams = new HashMap<>();
   
   public String getType() {
@@ -271,6 +276,7 @@
   public void setSubField(List<FaceFieldEntity> subField) {
      this.subField = subField;
   }
      public String getTable() {
      return table;
   }
@@ -278,13 +284,32 @@
   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);
      }
   }
}