From c518caf85891966a0e57f5760731c7f4e7044a05 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 21 十一月 2022 12:26:43 +0800
Subject: [PATCH] 12

---
 src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java |   24 ++++++++++++++++++++++++
 1 files changed, 24 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..a28581c 100644
--- a/src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java
+++ b/src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java
@@ -8,11 +8,27 @@
     public TabMapperEntity() {
     }
 
+    public TabMapperEntity(String fileName, String type, String tab) {
+        this.fileName = fileName;
+        this.type = type;
+        this.tab = tab;
+
+    }
+
+    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;
 
@@ -40,6 +56,14 @@
         this.tab = tab;
     }
 
+    public String getSubPath() {
+        return subPath;
+    }
+
+    public void setSubPath(String subPath) {
+        this.subPath = subPath;
+    }
+
     public String getEntity() {
         return entity;
     }

--
Gitblit v1.9.3