package cn.gistack.resource.panoramaUtils; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.List; /** * @author kelu */ @Data public class QietuResult { /** * 图片路径 */ private List qieTuUrlList; /** * 图片路径头 */ private String urlHead; /** * 原始全景图片名称 */ private String qjName; /** * 原始全景图片上传路径 */ private String qjUrl; /** * 原始全景图片长 */ private Integer quanJingHeight; /** * 原始全景图片宽 */ private Integer quanJingWidth; /** * 原始全景图片,切图的列数 */ private Integer col; /** * 原始全景图片,切图的行数 */ private Integer row; }