From ab849f796bdc17236a95ea5fe5c166fb8f24a75c Mon Sep 17 00:00:00 2001 From: sws <15810472099@163.com> Date: 星期六, 26 十一月 2022 16:12:02 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/ctrl/TabEntity.java | 64 ++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/ctrl/TabEntity.java b/src/main/java/com/lf/server/entity/ctrl/TabEntity.java new file mode 100644 index 0000000..c6adbf9 --- /dev/null +++ b/src/main/java/com/lf/server/entity/ctrl/TabEntity.java @@ -0,0 +1,64 @@ +package com.lf.server.entity.ctrl; + +import java.io.Serializable; + +/** + * 琛ㄥ疄浣撶被 + * @author WWW + */ +public class TabEntity implements Serializable { + private static final long serialVersionUID = 2786394526795387464L; + + private String ns; + + private String tab; + + private String entity; + + private String tabDesc; + + private String tableType; + + public TabEntity() { + } + + 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 getEntity() { + return entity; + } + + public void setEntity(String entity) { + this.entity = entity; + } + + public String getTabDesc() { + return tabDesc; + } + + public void setTabDesc(String tabDesc) { + this.tabDesc = tabDesc; + } + + public String getTableType() { + return tableType; + } + + public void setTableType(String tableType) { + this.tableType = tableType; + } +} -- Gitblit v1.9.3