From 1d53dd8f501a98ddcce8146443b51b357ef5f9b1 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期四, 29 十二月 2022 16:55:46 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/entity/data/MetaEntity.java |   86 +++++++++++++++++++++++++++++++++++++++----
 1 files changed, 78 insertions(+), 8 deletions(-)

diff --git a/src/main/java/com/lf/server/entity/data/MetaEntity.java b/src/main/java/com/lf/server/entity/data/MetaEntity.java
index e283e2d..423e022 100644
--- a/src/main/java/com/lf/server/entity/data/MetaEntity.java
+++ b/src/main/java/com/lf/server/entity/data/MetaEntity.java
@@ -22,7 +22,11 @@
 
     private String type;
 
-    private long sizes;
+    private double sizes;
+
+    private String tab;
+
+    private int rows;
 
     private String cs;
 
@@ -31,6 +35,8 @@
     private String resolution;
 
     private Timestamp gather;
+
+    private String batch;
 
     private String descr;
 
@@ -42,7 +48,15 @@
 
     private Timestamp updateTime;
 
-    private String geo;
+    private String geom;
+
+    private String uname;
+
+    private String depName;
+
+    private String verName;
+
+    private String dirName;
 
     public MetaEntity() {
     }
@@ -95,12 +109,28 @@
         this.type = type;
     }
 
-    public long getSizes() {
+    public double getSizes() {
         return sizes;
     }
 
-    public void setSizes(long sizes) {
+    public void setSizes(double sizes) {
         this.sizes = sizes;
+    }
+
+    public String getTab() {
+        return tab;
+    }
+
+    public void setTab(String tab) {
+        this.tab = tab;
+    }
+
+    public int getRows() {
+        return rows;
+    }
+
+    public void setRows(int rows) {
+        this.rows = rows;
     }
 
     public String getCs() {
@@ -133,6 +163,14 @@
 
     public void setGather(Timestamp gather) {
         this.gather = gather;
+    }
+
+    public String getBatch() {
+        return batch;
+    }
+
+    public void setBatch(String batch) {
+        this.batch = batch;
     }
 
     public String getDescr() {
@@ -175,11 +213,43 @@
         this.updateTime = updateTime;
     }
 
-    public String getGeo() {
-        return geo;
+    public String getGeom() {
+        return geom;
     }
 
-    public void setGeo(String geo) {
-        this.geo = geo;
+    public void setGeom(String geom) {
+        this.geom = geom;
+    }
+
+    public String getUname() {
+        return uname;
+    }
+
+    public void setUname(String uname) {
+        this.uname = uname;
+    }
+
+    public String getDepName() {
+        return depName;
+    }
+
+    public void setDepName(String depName) {
+        this.depName = depName;
+    }
+
+    public String getVerName() {
+        return verName;
+    }
+
+    public void setVerName(String verName) {
+        this.verName = verName;
+    }
+
+    public String getDirName() {
+        return dirName;
+    }
+
+    public void setDirName(String dirName) {
+        this.dirName = dirName;
     }
 }

--
Gitblit v1.9.3