许鹏程
2024-09-25 605578732df221ebfef66d07d87ec63e4317595a
src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java
@@ -1,5 +1,9 @@
package com.product.mobile.core.entity;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
 * @Author cheng
 * @Date 2024/8/15 11:12
@@ -68,6 +72,22 @@
   private String organizationType;
   /**
    * 子表允许新增
    */
   private Boolean allowAdd;
   /**
    * 子表允许删除
    */
   private Boolean allowDelete;
   /**
    * 子表表名  当 component = 'subTable' 的时候有值
    */
   private String subTableName;
   private List<FaceFieldEntity> subField;
   private Map<String, Object> otherParams = new HashMap<>();
   public String getFieldName() {
      return fieldName;
@@ -172,4 +192,56 @@
   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;
   }
   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);
   }
}