From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 02 七月 2025 16:43:13 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service --- src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java | 31 +++++++++++++------------------ 1 files changed, 13 insertions(+), 18 deletions(-) diff --git a/src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java b/src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java index f15a414..432a1da 100644 --- a/src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java +++ b/src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java @@ -5,36 +5,31 @@ * @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 KeyValueEntity(String key, String value) { + this.key = key; + this.value = value; } - public void setNs(String ns) { - this.ns = ns; + public String getKey() { + return key; } - public String getTab() { - return tab; + public void setKey(String key) { + this.key = key; } - public void setTab(String tab) { - this.tab = tab; + public String getValue() { + return value; } - public String getTabDesc() { - return tabDesc; - } - - public void setTabDesc(String tabDesc) { - this.tabDesc = tabDesc; + public void setValue(String value) { + this.value = value; } } -- Gitblit v1.9.3