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;
|
| }
|
|