src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java
@@ -7,9 +7,14 @@ public class KeyValueEntity { private String key; private Object value; private String value; public KeyValueEntity() { } public KeyValueEntity(String key, String value) { this.key = key; this.value = value; } public String getKey() { @@ -20,11 +25,11 @@ this.key = key; } public Object getValue() { public String getValue() { return value; } public void setValue(Object value) { public void setValue(String value) { this.value = value; } }