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/TabMapperEntity.java | 77 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 77 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java b/src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java new file mode 100644 index 0000000..eb88378 --- /dev/null +++ b/src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java @@ -0,0 +1,77 @@ +package com.lf.server.entity.ctrl; + +/** + * 琛ㄦ槧灏勫疄浣撶被 + * @author WWW + */ +public class TabMapperEntity { + public TabMapperEntity() { + } + + public TabMapperEntity(String fileName, String type, String tab, String subPath) { + this.fileName = fileName; + this.type = type; + this.tab = tab; + this.subPath = subPath; + } + + private String fileName; + + private String type; + + private String tab; + + private String subPath; + + private String entity; + + private Integer rows; + + public String getFileName() { + return fileName; + } + + public void setFileName(String fileName) { + this.fileName = fileName; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getTab() { + return tab; + } + + public void setTab(String tab) { + this.tab = tab; + } + + public String getSubPath() { + return subPath; + } + + public void setSubPath(String subPath) { + this.subPath = subPath; + } + + public String getEntity() { + return entity; + } + + public void setEntity(String entity) { + this.entity = entity; + } + + public Integer getRows() { + return rows; + } + + public void setRows(Integer rows) { + this.rows = rows; + } +} -- Gitblit v1.9.3