| | |
| | | * @author WWW |
| | | */ |
| | | public class KeyValueEntity { |
| | | private String ns; |
| | | private String key; |
| | | |
| | | private String tab; |
| | | |
| | | private String tabDesc; |
| | | private String value; |
| | | |
| | | public KeyValueEntity() { |
| | | } |
| | | |
| | | public String getNs() { |
| | | return ns; |
| | | public String getKey() { |
| | | return key; |
| | | } |
| | | |
| | | public void setNs(String ns) { |
| | | this.ns = ns; |
| | | public void setKey(String key) { |
| | | this.key = key; |
| | | } |
| | | |
| | | public String getTab() { |
| | | return tab; |
| | | public String getValue() { |
| | | return value; |
| | | } |
| | | |
| | | public void setTab(String tab) { |
| | | this.tab = tab; |
| | | } |
| | | |
| | | public String getTabDesc() { |
| | | return tabDesc; |
| | | } |
| | | |
| | | public void setTabDesc(String tabDesc) { |
| | | this.tabDesc = tabDesc; |
| | | public void setValue(String value) { |
| | | this.value = value; |
| | | } |
| | | } |