管道基础大数据平台系统开发-【后端】-Server
1
sws
2022-11-26 ab849f796bdc17236a95ea5fe5c166fb8f24a75c
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;
    }
}