From 05ffa1a7f490e1e81d6fbf1ee948db50b1fff6fc Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期二, 14 二月 2023 16:02:52 +0800
Subject: [PATCH] 修改depcode、dircode值

---
 src/main/java/com/lf/server/entity/data/MetaFileEntity.java |   71 ++++++++++++++++++++++++++++++-----
 1 files changed, 61 insertions(+), 10 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 4f5cf47..30bf89d 100644
--- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java
+++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java
@@ -1,6 +1,7 @@
 package com.lf.server.entity.data;
 
 import java.io.Serializable;
+import java.sql.Timestamp;
 
 /**
  * 鍏冩暟鎹枃浠�
@@ -11,9 +12,9 @@
 
     private String eventid;
 
-    private int dirid;
+    private String dircode;
 
-    private int depid;
+    private String depcode;
 
     private int verid;
 
@@ -29,9 +30,19 @@
 
     private int createUser;
 
+    private Timestamp createTime;
+
     private String extName;
 
     private String epsgCode;
+
+    private String tab;
+
+    private String entity;
+
+    private int rows;
+
+    private String msg;
 
     public String getEventid() {
         return eventid;
@@ -41,20 +52,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() {
@@ -113,6 +124,14 @@
         this.createUser = createUser;
     }
 
+    public Timestamp getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Timestamp createTime) {
+        this.createTime = createTime;
+    }
+
     public String getExtName() {
         return extName;
     }
@@ -128,4 +147,36 @@
     public void setEpsgCode(String epsgCode) {
         this.epsgCode = epsgCode;
     }
+
+    public String getTab() {
+        return tab;
+    }
+
+    public void setTab(String tab) {
+        this.tab = tab;
+    }
+
+    public String getEntity() {
+        return entity;
+    }
+
+    public void setEntity(String entity) {
+        this.entity = entity;
+    }
+
+    public int getRows() {
+        return rows;
+    }
+
+    public void setRows(int rows) {
+        this.rows = rows;
+    }
+
+    public String getMsg() {
+        return msg;
+    }
+
+    public void setMsg(String msg) {
+        this.msg = msg;
+    }
 }

--
Gitblit v1.9.3