package com.lunhan.xxx.entity.dto; /** * 键值对 dto * @author lin.liu * @description 键值对 dto * @date 2021/4/7 **/ public class KeyValueDTO { private String key; private String value; 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; } }