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/MetaEntity.java | 235 ++++++++++++++++++++++++++++++++++++++++++++++------------ 1 files changed, 186 insertions(+), 49 deletions(-) diff --git a/src/main/java/com/moon/server/entity/data/MetaEntity.java b/src/main/java/com/moon/server/entity/data/MetaEntity.java index 8f3c7a1..33cb963 100644 --- a/src/main/java/com/moon/server/entity/data/MetaEntity.java +++ b/src/main/java/com/moon/server/entity/data/MetaEntity.java @@ -3,10 +3,7 @@ import java.io.Serializable; import java.sql.Timestamp; -/** - * 鍏冩暟鎹� - * @author WWW - */ +@SuppressWarnings("ALL") public class MetaEntity implements Serializable { private static final long serialVersionUID = -984838663593325184L; @@ -15,12 +12,6 @@ private String eventid; private int metaid; - - private short ismeta; - - private String dircode; - - private String depcode; private int verid; @@ -36,8 +27,6 @@ private String tab; - private String layer; - private int rows; private int createUser; @@ -52,7 +41,43 @@ private String geom; - private String uname; + private String layer; + + private String depcode; + + private String dircode; + + private int ismeta; + + private int sensortype; + + private Timestamp acqTime; + + private String resolution; + + private String gridsize; + + private String coorSys; + + private String epsg; + + private String hDatum; + + private int mataType; + + private String bands; + + private String min; + + private String max; + + private String bandType; + + private String ct; + + private String createName; + + private String updateName; private String depName; @@ -93,30 +118,6 @@ public void setMetaid(int metaid) { this.metaid = metaid; - } - - public short getIsmeta() { - return ismeta; - } - - public void setIsmeta(short ismeta) { - this.ismeta = ismeta; - } - - public String getDircode() { - return dircode; - } - - public void setDircode(String dircode) { - this.dircode = dircode; - } - - public String getDepcode() { - return depcode; - } - - public void setDepcode(String depcode) { - this.depcode = depcode; } public int getVerid() { @@ -175,14 +176,6 @@ this.tab = tab; } - public String getLayer() { - return layer; - } - - public void setLayer(String layer) { - this.layer = layer; - } - public int getRows() { return rows; } @@ -239,12 +232,156 @@ this.geom = geom; } - public String getUname() { - return uname; + public String getLayer() { + return layer; } - public void setUname(String uname) { - this.uname = uname; + public void setLayer(String layer) { + this.layer = layer; + } + + public String getDepcode() { + return depcode; + } + + public void setDepcode(String depcode) { + this.depcode = depcode; + } + + public String getDircode() { + return dircode; + } + + public void setDircode(String dircode) { + this.dircode = dircode; + } + + public int getIsmeta() { + return ismeta; + } + + public void setIsmeta(int ismeta) { + this.ismeta = ismeta; + } + + public int getSensortype() { + return sensortype; + } + + public void setSensortype(int sensortype) { + this.sensortype = sensortype; + } + + public Timestamp getAcqTime() { + return acqTime; + } + + public void setAcqTime(Timestamp acqTime) { + this.acqTime = acqTime; + } + + public String getResolution() { + return resolution; + } + + public void setResolution(String resolution) { + this.resolution = resolution; + } + + public String getGridsize() { + return gridsize; + } + + public void setGridsize(String gridsize) { + this.gridsize = gridsize; + } + + public String getCoorSys() { + return coorSys; + } + + public void setCoorSys(String coorSys) { + this.coorSys = coorSys; + } + + public String getEpsg() { + return epsg; + } + + public void setEpsg(String epsg) { + this.epsg = epsg; + } + + public String gethDatum() { + return hDatum; + } + + public void sethDatum(String hDatum) { + this.hDatum = hDatum; + } + + public int getMataType() { + return mataType; + } + + public void setMataType(int mataType) { + this.mataType = mataType; + } + + public String getBands() { + return bands; + } + + public void setBands(String bands) { + 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; + } + + public void setBandType(String bandType) { + this.bandType = bandType; + } + + public String getCt() { + return ct; + } + + public void setCt(String ct) { + this.ct = ct; + } + + public String getCreateName() { + return createName; + } + + public void setCreateName(String createName) { + this.createName = createName; + } + + public String getUpdateName() { + return updateName; + } + + public void setUpdateName(String updateName) { + this.updateName = updateName; } public String getDepName() { -- Gitblit v1.9.3