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;
| }
| }
|
|