From afb74b6bb1dbb3ea0c0f4eb206d803f30c60ffc2 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期五, 30 十二月 2022 16:15:17 +0800
Subject: [PATCH] 1

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