| | |
| | | package com.product.mobile.core.entity; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | |
| | | private List<FaceFieldEntity> subField; |
| | | |
| | | private Map<String, Object> otherParams = new HashMap<>(); |
| | | |
| | | public String getFieldName() { |
| | | return fieldName; |
| | |
| | | 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); |
| | | } |
| | | } |