From 7d49019d2cca2c58fe0412e40afb64755d33cfa6 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期二, 22 十一月 2022 15:33:35 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/entity/data/MetaEntity.java |   56 ++++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 48 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..5fc4473 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,7 @@
 
     private String type;
 
-    private long sizes;
+    private double sizes;
 
     private String cs;
 
@@ -31,6 +31,8 @@
     private String resolution;
 
     private Timestamp gather;
+
+    private String batch;
 
     private String descr;
 
@@ -42,7 +44,13 @@
 
     private Timestamp updateTime;
 
-    private String geo;
+    private String geom;
+
+    private String uname;
+
+    private String depName;
+
+    private String verName;
 
     public MetaEntity() {
     }
@@ -95,11 +103,11 @@
         this.type = type;
     }
 
-    public long getSizes() {
+    public double getSizes() {
         return sizes;
     }
 
-    public void setSizes(long sizes) {
+    public void setSizes(double sizes) {
         this.sizes = sizes;
     }
 
@@ -133,6 +141,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 +191,35 @@
         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;
     }
 }

--
Gitblit v1.9.3