From 7c52b18f9ca518424e1bae4451b553daca882ed5 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 04 三月 2024 10:19:10 +0800
Subject: [PATCH] 修改初始化

---
 src/main/java/com/moon/server/entity/data/MetaFileEntity.java |   32 ++++++++++++++++++++++++++------
 1 files changed, 26 insertions(+), 6 deletions(-)

diff --git a/src/main/java/com/moon/server/entity/data/MetaFileEntity.java b/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
index fad6842..c5e1986 100644
--- a/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
+++ b/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
@@ -52,7 +52,7 @@
 
     private String geom;
 
-    private String sensortype;
+    private int sensortype;
 
     private Timestamp acqTime;
 
@@ -66,9 +66,13 @@
 
     private String hDatum;
 
-    private String mataType;
+    private int mataType;
 
     private String bands;
+
+    private String min;
+
+    private String max;
 
     private String bandType;
 
@@ -242,11 +246,11 @@
         this.geom = geom;
     }
 
-    public String getSensortype() {
+    public int getSensortype() {
         return sensortype;
     }
 
-    public void setSensortype(String sensortype) {
+    public void setSensortype(int sensortype) {
         this.sensortype = sensortype;
     }
 
@@ -298,11 +302,11 @@
         this.hDatum = hDatum;
     }
 
-    public String getMataType() {
+    public int getMataType() {
         return mataType;
     }
 
-    public void setMataType(String mataType) {
+    public void setMataType(int mataType) {
         this.mataType = mataType;
     }
 
@@ -314,6 +318,22 @@
         this.bands = bands;
     }
 
+    public String getMin() {
+        return min;
+    }
+
+    public void setMin(String min) {
+        this.min = min;
+    }
+
+    public String getMax() {
+        return max;
+    }
+
+    public void setMax(String max) {
+        this.max = max;
+    }
+
     public String getBandType() {
         return bandType;
     }

--
Gitblit v1.9.3