From fee67ca8a0760315047a52fc4101a8f4f80b7a7f Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 11 十一月 2024 15:02:54 +0800
Subject: [PATCH] 1

---
 src/main/java/com/moon/server/entity/data/MetaFileEntity.java |   37 +++++++++++++++++++++++++++----------
 1 files changed, 27 insertions(+), 10 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..b803836 100644
--- a/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
+++ b/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
@@ -3,10 +3,7 @@
 import java.io.Serializable;
 import java.sql.Timestamp;
 
-/**
- * 鍏冩暟鎹枃浠�
- * @author WWW
- */
+@SuppressWarnings("ALL")
 public class MetaFileEntity implements Serializable {
     private static final long serialVersionUID = -3688958480700165163L;
 
@@ -52,7 +49,7 @@
 
     private String geom;
 
-    private String sensortype;
+    private int sensortype;
 
     private Timestamp acqTime;
 
@@ -66,9 +63,13 @@
 
     private String hDatum;
 
-    private String mataType;
+    private int mataType;
 
     private String bands;
+
+    private String min;
+
+    private String max;
 
     private String bandType;
 
@@ -242,11 +243,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 +299,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 +315,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