src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,30 @@ package com.lf.server.entity.ctrl; /** * é®å¼å¯¹å®ä½ç±» * @author WWW */ public class KeyValueEntity { private String key; private String value; public KeyValueEntity() { } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }