SceneViewInfo.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. package com.fdkankan.download.bean;
  2. import com.alibaba.fastjson.JSONArray;
  3. import com.alibaba.fastjson.JSONObject;
  4. import lombok.*;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * TODO
  11. * </p>
  12. *
  13. * @author dengsixing
  14. * @since 2022/1/19
  15. **/
  16. @Data
  17. @Builder
  18. @NoArgsConstructor
  19. @AllArgsConstructor
  20. public class SceneViewInfo implements Serializable {
  21. private static final long serialVersionUID = 1l;
  22. /**
  23. * 场景码
  24. */
  25. private String num;
  26. /**
  27. * 地面logo名称
  28. */
  29. private String floorLogo;
  30. /**
  31. * 地面logo大小
  32. */
  33. private Integer floorLogoSize;
  34. /**
  35. * 地面logo文件名称
  36. */
  37. private String floorLogoFile;
  38. /**
  39. * 背景音乐
  40. */
  41. private String music;
  42. /**
  43. * 背景音乐文件名称
  44. */
  45. private String musicFile;
  46. /**
  47. * 浏览密码
  48. */
  49. private String scenePassword;
  50. /**
  51. * 场景标题
  52. */
  53. private String title;
  54. /**
  55. * 场景描述
  56. */
  57. private String description;
  58. private SceneEditControlsVO controls;
  59. /**
  60. * 创建时间
  61. */
  62. private Date createTime;
  63. // /**
  64. // * 点位数量
  65. // */
  66. // private Integer panoCount;
  67. //
  68. // /**
  69. // * 球幕视频数量
  70. // */
  71. // private Integer videoCount;
  72. /**
  73. * 版本
  74. */
  75. private Integer version;
  76. /**
  77. * 图片版本
  78. */
  79. private Integer imgVersion;
  80. /**
  81. * 场景关联版本
  82. */
  83. private Integer linkVersion;
  84. /**
  85. * 是否上传了户型图(0-否,1-是)
  86. */
  87. private Byte floorPlanUser;
  88. // private String cadInfo;
  89. //
  90. // private Byte isUploadObj;
  91. //
  92. // private Integer floorEditVer;
  93. //
  94. // private Integer floorPublishVer;
  95. /**
  96. * 初始点信息
  97. */
  98. private String entry;
  99. /**
  100. * 全景图加载方式,tiles/1k:1k瓦片图,tiles/2:2k瓦片图,tiles/4k:4k瓦片图,pan:全景图 ,local:本地切片,cube:立体图
  101. */
  102. private String sceneResolution;
  103. /**
  104. * 场景来源,lite:双目lite相机,pro:八目相机,minion:双面转台相机,laser:激光相机,virtual:虚拟场景,sketch:图片建模场景
  105. */
  106. private String sceneFrom;
  107. /**
  108. * 切图方式(tiles:瓦片图,face:切片图,pan:全景图 ,local:本地切片,cube:立体图)
  109. */
  110. private String sceneKind;
  111. /**
  112. * 算法模型类型(dam,3dtiles)
  113. */
  114. private String modelKind;
  115. /**
  116. * 空间视频数据
  117. */
  118. private String boxVideos;
  119. /**
  120. * 空间贴图数据
  121. */
  122. private String boxPhotos;
  123. /**
  124. * 空间模型数据
  125. */
  126. private String boxModels;
  127. /**
  128. *点位视频
  129. */
  130. private String videos;
  131. /**
  132. * 是否有热点数据
  133. */
  134. private Integer tags;
  135. /**
  136. * 加载logo名
  137. */
  138. private String loadingLogo;
  139. /**
  140. * 加载logo文件名
  141. */
  142. private String loadingLogoFile;
  143. /**
  144. * 数据同步方式
  145. */
  146. private String dataSync;
  147. /**
  148. * 户型角度
  149. */
  150. private Float floorPlanAngle;
  151. /**
  152. * 指南针角度
  153. */
  154. private Float floorPlanCompass;
  155. /**
  156. * 用户上传自定义平面图
  157. */
  158. private JSONArray floorPlanUpload;
  159. /**
  160. * 是否保存导览
  161. */
  162. private Integer tours;
  163. /**
  164. * 是否有马赛克
  165. */
  166. private Integer mosaic;
  167. /**
  168. * 马赛克列表
  169. */
  170. private List<JSONObject> mosaicList;
  171. /**
  172. * 水印文件名
  173. */
  174. private String waterMark;
  175. /**
  176. * 是否有场景关联(0-否,1-是)
  177. */
  178. private Integer links;
  179. /**
  180. * 是否有滤镜(0-否,1-是)
  181. */
  182. private Integer filters;
  183. /**
  184. * 是否有监控摄像头数据
  185. */
  186. private Integer surveillances;
  187. /**
  188. * 场景容量 单位 MB
  189. */
  190. private Integer space;
  191. /**
  192. * 分享信息
  193. */
  194. private JSONObject sns;
  195. /**
  196. * 是否有指示牌(0-否,1-是)
  197. */
  198. private Integer billboards;
  199. /**
  200. * 是否有模型裁剪(0-否,1-是)
  201. */
  202. private Integer cutModel = 0;
  203. /**
  204. * 启动页配置信息
  205. */
  206. private JSONObject started;
  207. private Integer floorLogoType;
  208. private String orientation;
  209. /**
  210. * 空间绘制
  211. */
  212. private Integer sceneDraw;
  213. //动态面板
  214. private int dynamicPanel;
  215. }