SceneInfoVO.java 4.5 KB

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