liulin
2024-07-29 b65029f9d6e351a714682c110343a8c23eb4e793
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
    }
}