SceneJsonBean.java 3.8 KB

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