aix
2024-07-24 2cba01a6b6f67cfa97d0c4e0cc589302fab817ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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<String>  qieTuUrlList;
 
    /**
     * 图片路径头
     */
    private String  urlHead;
 
    /**
     * 原始全景图片名称
     */
    private String  qjName;
    /**
     * 原始全景图片上传路径
     */
    private String  qjUrl;
    /**
     * 原始全景图片长
     */
    private Integer  quanJingHeight;
    /**
     * 原始全景图片宽
     */
    private Integer  quanJingWidth;
 
    /**
     * 原始全景图片,切图的列数
     */
    private Integer  col;
 
    /**
     * 原始全景图片,切图的行数
     */
    private Integer  row;
 
}