| | |
| | | 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 |
| | |
| | | * @Desc |
| | | */ |
| | | public class FaceFieldEntity { |
| | | |
| | | |
| | | private String table; |
| | | |
| | | private String field; |
| | |
| | | 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; |
| | |
| | | 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); |
| | | } |
| | | } |
| | | } |