Commit 3d6bb76d authored by xiaosl's avatar xiaosl

入库实体修改

parent 3471d76d
......@@ -2,81 +2,93 @@ package com.upyuns.platform.rs.datacenter.vo;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
@Data
public class ImageStorageVo {
//左上角经度
private Double leftTopLon;
private BigDecimal leftTopLon;
//左上角维度
private Double leftTopLat;
private BigDecimal leftTopLat;
//左下角经度
private Double leftBottomLon;
private BigDecimal leftBottomLon;
//左下角维度
private Double leftBottomLat;
private BigDecimal leftBottomLat;
//右下角经度
private Double rightBottomLon;
private BigDecimal rightBottomLon;
//右下角维度
private Double rightBottomLat;
private BigDecimal rightBottomLat;
//右上角经度
private Double rightTopLon;
private BigDecimal rightTopLon;
//右上角维度
private Double rightTopLat;
private BigDecimal rightTopLat;
//中心点经纬度
private BigDecimal imageCenterPointLat;
private BigDecimal imageCenterPointLon;
//数据名称
private String name;
//缩略图存储路径
private String thumbnailPath;
//影像存储地址目录
private String imageFilePath;
//文件名称
private List<String> files;
//分辨率数组
private Double[] imageResolution;
//光谱
private String imageSpectrumType;
//光谱名称
private String imageSpectrumTypeDisplay;
//影像存储地址目录
private String imageFilePath;
//中心点经纬度
private Double imageCenterPointLat;
private Double imageCenterPointLon;
//投影
private String imageProjection;
//卫星类型
private String imageSatelliteType;
//卫星名称
private String imageSatelliteTypeDisplay;
//拍摄时间
private String imageTakeTime;
//云量
private Integer imageCloudage;
//传感器类型
private String imageSensorType;
//传感器id
private String imageSensorId;
//文件名称
private List<String> files;
//景id
private String imageSceneId;
//产品格式 GEOTIFF 、 TIFF
private String imageProductFormat;
//产品时间
private String imageProductTime;
//sat行号
private String imageSatPath;
//sat列号
private String imageSatRow;
//拍摄时间
private String imageTakeTime;
//影像开始时间
private String imageStartTime;
//影像结束时间
private String imageEndTime;
//影像中间时间
private String imageCenterTime;
//产品时间
private String imageProductTime;
//投影
private String imageProjection;
//云量
private BigDecimal imageCloudage;
//产品格式 GEOTIFF 、 TIFF
private String imageProductFormat;
//sat行号
private String imageSatPath;
//sat列号
private String imageSatRow;
//分辨率数组
private BigDecimal[] imageResolution;
//影像宽度
private Integer imageWidthInPixels;
//影像高度
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment