From 10c2e86f67ef4a992e5cdd4f8d28a5893b066e4d Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期六, 24 十二月 2022 12:38:22 +0800 Subject: [PATCH] 2022-12-24 --- src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 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 index a7e6a32..eb88378 100644 --- a/src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java +++ b/src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java @@ -8,13 +8,24 @@ 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; @@ -40,6 +51,14 @@ this.tab = tab; } + public String getSubPath() { + return subPath; + } + + public void setSubPath(String subPath) { + this.subPath = subPath; + } + public String getEntity() { return entity; } @@ -47,4 +66,12 @@ 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