管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-01-06 502c7dbbe1f906ae22895436b925a3aa2fb7225a
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
29
30
31
32
33
34
35
package com.lf.server.entity.ctrl;
 
/**
 * 名称值对实体类
 * @author WWW
 */
public class NameValueEntity {
    private String name;
 
    private Object value;
 
    public NameValueEntity() {
    }
 
    public NameValueEntity(String name, Object value) {
        this.name = name;
        this.value = value;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Object getValue() {
        return value;
    }
 
    public void setValue(Object value) {
        this.value = value;
    }
}