From b018157eb7d8de9c33cb7bab144f8cec44c680c8 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 27 十一月 2023 11:09:32 +0800 Subject: [PATCH] 解决标绘导出shp接受参数异常 --- 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