From ec7fa1df7b083e7b03ccb8c2dae9a03598f3c00f Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期四, 24 八月 2023 11:18:52 +0800
Subject: [PATCH] 修改MD架构的实体类

---
 src/main/java/com/lf/server/entity/data/MetaFileEntity.java |   60 +++++++++++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 45 insertions(+), 15 deletions(-)

diff --git a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java
index c31f2b5..4423c9b 100644
--- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java
+++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java
@@ -12,9 +12,9 @@
 
     private String eventid;
 
-    private int dirid;
+    private String dircode;
 
-    private int depid;
+    private String depcode;
 
     private int verid;
 
@@ -30,7 +30,7 @@
 
     private int createUser;
 
-    private Timestamp createtime;
+    private Timestamp createTime;
 
     private String extName;
 
@@ -42,7 +42,13 @@
 
     private int rows;
 
+    private int records;
+
     private String msg;
+
+    private Boolean isMeta;
+
+    private String xlsPath;
 
     public String getEventid() {
         return eventid;
@@ -52,20 +58,20 @@
         this.eventid = eventid;
     }
 
-    public int getDirid() {
-        return dirid;
+    public String getDircode() {
+        return dircode;
     }
 
-    public void setDirid(int dirid) {
-        this.dirid = dirid;
+    public void setDircode(String dircode) {
+        this.dircode = dircode;
     }
 
-    public int getDepid() {
-        return depid;
+    public String getDepcode() {
+        return depcode;
     }
 
-    public void setDepid(int depid) {
-        this.depid = depid;
+    public void setDepcode(String depcode) {
+        this.depcode = depcode;
     }
 
     public int getVerid() {
@@ -124,12 +130,12 @@
         this.createUser = createUser;
     }
 
-    public Timestamp getCreatetime() {
-        return createtime;
+    public Timestamp getCreateTime() {
+        return createTime;
     }
 
-    public void setCreatetime(Timestamp createtime) {
-        this.createtime = createtime;
+    public void setCreateTime(Timestamp createTime) {
+        this.createTime = createTime;
     }
 
     public String getExtName() {
@@ -172,6 +178,14 @@
         this.rows = rows;
     }
 
+    public int getRecords() {
+        return records;
+    }
+
+    public void setRecords(int records) {
+        this.records = records;
+    }
+
     public String getMsg() {
         return msg;
     }
@@ -179,4 +193,20 @@
     public void setMsg(String msg) {
         this.msg = msg;
     }
+
+    public Boolean getIsMeta() {
+        return isMeta;
+    }
+
+    public void setIsMeta(Boolean isMeta) {
+        this.isMeta = isMeta;
+    }
+
+    public String getXlsPath() {
+        return xlsPath;
+    }
+
+    public void setXlsPath(String xlsPath) {
+        this.xlsPath = xlsPath;
+    }
 }

--
Gitblit v1.9.3