From a5de74e84d74eef4543e56b1181a5b4b269212e1 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期二, 10 一月 2023 16:34:08 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/entity/data/MetaFileEntity.java |  138 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 138 insertions(+), 0 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 e31697e..31cae41 100644
--- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java
+++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java
@@ -9,5 +9,143 @@
 public class MetaFileEntity implements Serializable {
     private static final long serialVersionUID = -3688958480700165163L;
 
+    private String eventid;
 
+    private int dirid;
+
+    private int depid;
+
+    private int verid;
+
+    private String name;
+
+    private String type;
+
+    private String guid;
+
+    private String path;
+
+    private double sizes;
+
+    private int createUser;
+
+    private String extName;
+
+    private String epsgCode;
+
+    private String tab;
+
+    private String entity;
+
+    public String getEventid() {
+        return eventid;
+    }
+
+    public void setEventid(String eventid) {
+        this.eventid = eventid;
+    }
+
+    public int getDirid() {
+        return dirid;
+    }
+
+    public void setDirid(int dirid) {
+        this.dirid = dirid;
+    }
+
+    public int getDepid() {
+        return depid;
+    }
+
+    public void setDepid(int depid) {
+        this.depid = depid;
+    }
+
+    public int getVerid() {
+        return verid;
+    }
+
+    public void setVerid(int verid) {
+        this.verid = verid;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public String getGuid() {
+        return guid;
+    }
+
+    public void setGuid(String guid) {
+        this.guid = guid;
+    }
+
+    public String getPath() {
+        return path;
+    }
+
+    public void setPath(String path) {
+        this.path = path;
+    }
+
+    public double getSizes() {
+        return sizes;
+    }
+
+    public void setSizes(double sizes) {
+        this.sizes = sizes;
+    }
+
+    public int getCreateUser() {
+        return createUser;
+    }
+
+    public void setCreateUser(int createUser) {
+        this.createUser = createUser;
+    }
+
+    public String getExtName() {
+        return extName;
+    }
+
+    public void setExtName(String extName) {
+        this.extName = extName;
+    }
+
+    public String getEpsgCode() {
+        return epsgCode;
+    }
+
+    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;
+    }
 }

--
Gitblit v1.9.3