| | |
| | | import java.io.Serializable; |
| | | import java.sql.Timestamp; |
| | | |
| | | /** |
| | | * 元数据文件 |
| | | * @author WWW |
| | | */ |
| | | @SuppressWarnings("ALL") |
| | | public class MetaFileEntity implements Serializable { |
| | | private static final long serialVersionUID = -3688958480700165163L; |
| | | |
| | |
| | | |
| | | private String geom; |
| | | |
| | | private String sensortype; |
| | | private int sensortype; |
| | | |
| | | private Timestamp acqTime; |
| | | |
| | |
| | | |
| | | private String hDatum; |
| | | |
| | | private String mataType; |
| | | private int mataType; |
| | | |
| | | private String bands; |
| | | |
| | | private String min; |
| | | |
| | | private String max; |
| | | |
| | | private String bandType; |
| | | |
| | |
| | | this.geom = geom; |
| | | } |
| | | |
| | | public String getSensortype() { |
| | | public int getSensortype() { |
| | | return sensortype; |
| | | } |
| | | |
| | | public void setSensortype(String sensortype) { |
| | | public void setSensortype(int sensortype) { |
| | | this.sensortype = sensortype; |
| | | } |
| | | |
| | |
| | | this.hDatum = hDatum; |
| | | } |
| | | |
| | | public String getMataType() { |
| | | public int getMataType() { |
| | | return mataType; |
| | | } |
| | | |
| | | public void setMataType(String mataType) { |
| | | public void setMataType(int mataType) { |
| | | this.mataType = mataType; |
| | | } |
| | | |
| | |
| | | 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; |
| | | } |