From 502c7dbbe1f906ae22895436b925a3aa2fb7225a Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期五, 06 一月 2023 16:16:46 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java |    6 +++---
 1 files changed, 3 insertions(+), 3 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 7404bb9..d7cf424 100644
--- a/src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java
+++ b/src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java
@@ -7,7 +7,7 @@
 public class KeyValueEntity {
     private String key;
 
-    private Object value;
+    private String value;
 
     public KeyValueEntity() {
     }
@@ -20,11 +20,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;
     }
 }

--
Gitblit v1.9.3