shicf
2024-09-25 00c2ab1621d9be6d8b63558a61fdb63c725a0ba2
漏掉
已修改1个文件
13 ■■■■■ 文件已修改
src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java
@@ -1,6 +1,8 @@
package com.product.mobile.core.entity;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
/**
 * @Author cheng
@@ -90,6 +92,8 @@
    private String type;
    
    private String length;
    private Map<String, Object> otherParams = new HashMap<>();
    public String getType() {
        return type;
@@ -260,4 +264,13 @@
    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);
   }
}