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
package cn.gistack.resource.entity;
 
import lombok.Data;
 
@Data
public class FormateTuEntity {
 
    private String picName;
 
    private String id;
 
    private String linshiUrl;
 
    private String resGuid;
 
    /**
     * 原始全景图片宽
     */
    private Integer  picheight;
    /**
     * 原始全景图片长
     */
    private Integer  picwidth;
 
}