管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-17 1efe2e6c8f21ca6ea8bb1283a07670cdd1ae8cf6
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
36
37
38
39
40
package com.lf.server.entity.ctrl;
 
/**
 * 键值对实体类
 * @author WWW
 */
public class KeyValueEntity {
    private String ns;
 
    private String tab;
 
    private String tabDesc;
 
    public KeyValueEntity() {
    }
 
    public String getNs() {
        return ns;
    }
 
    public void setNs(String ns) {
        this.ns = ns;
    }
 
    public String getTab() {
        return tab;
    }
 
    public void setTab(String tab) {
        this.tab = tab;
    }
 
    public String getTabDesc() {
        return tabDesc;
    }
 
    public void setTabDesc(String tabDesc) {
        this.tabDesc = tabDesc;
    }
}