许鹏程
6 天以前 eb8d72c413fd12ccfa30e0d38fd9fce2ff054f4f
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,14 +92,16 @@
   private List<FaceFieldEntity> subField;
   private String type;
   private String length;
   /**
    * 隐藏 1=是,0=否
    */
   private String hidden;
   private JSONArray showComponentFilter;
   public String getHidden() {
      return hidden;
@@ -107,12 +111,13 @@
   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;
@@ -271,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);
      }
   }
}