| | |
| | | package com.product.mobile.core.entity; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.HashMap; |
| | | |
| | | /** |
| | | * @Author cheng |
| | |
| | | private String type; |
| | | |
| | | private String length; |
| | | |
| | | private Map<String, Object> otherParams = new HashMap<>(); |
| | | |
| | | public String getType() { |
| | | return type; |
| | |
| | | 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); |
| | | } |
| | | } |