package org.yeshi.utils.generater.entity; /** * @author Administrator * @title: KeyValue * @description: 键值对 * @date 2021/9/23 17:42 */ public class KeyValue { private String key; private String value; public KeyValue(String key, String value) { this.key = key; this.value = 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; } }