From ab849f796bdc17236a95ea5fe5c166fb8f24a75c Mon Sep 17 00:00:00 2001 From: sws <15810472099@163.com> Date: 星期六, 26 十一月 2022 16:12:02 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/ctrl/KeyValueEntity.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 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 new file mode 100644 index 0000000..d7cf424 --- /dev/null +++ b/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; + } +} -- Gitblit v1.9.3