SceneJsonBean.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. package com.fdkankan.repair.bean;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import java.util.Date;
  5. import lombok.AllArgsConstructor;
  6. import lombok.Builder;
  7. import lombok.Data;
  8. import lombok.NoArgsConstructor;
  9. /**
  10. * <p>
  11. * scene.json实体类
  12. * </p>
  13. *
  14. * @author dengsixing
  15. * @since 2022/1/19
  16. **/
  17. @Data
  18. @Builder
  19. @NoArgsConstructor
  20. @AllArgsConstructor
  21. public class SceneJsonBean {
  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 SceneEditControlsBean 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. // * 户型图文件路径集合
  86. // */
  87. // private String[] floorPlanPaths;
  88. /**
  89. * 是否上传了户型图(0-否,1-是)
  90. */
  91. private Byte floorPlanUser;
  92. // private String cadInfo;
  93. // /**
  94. // * 是否上传模型
  95. // */
  96. // private Byte isUploadObj;
  97. //
  98. // /**
  99. // * 重新建模的版本
  100. // */
  101. // private Integer floorEditVer;
  102. //
  103. // /**
  104. // * 正式发布重新建模的版本
  105. // */
  106. // private Integer floorPublishVer;
  107. /**
  108. * 初始点信息
  109. */
  110. private String entry;
  111. /**
  112. * 全景图加载方式,tiles/1k:1k瓦片图,tiles/2:2k瓦片图,tiles/4k:4k瓦片图,pan:全景图 ,local:本地切片,cube:立体图
  113. */
  114. private String sceneResolution;
  115. /**
  116. * 场景来源,lite:双目lite相机,pro:八目相机,minion:双面转台相机,laser:激光相机,virtual:虚拟场景,sketch:图片建模场景
  117. */
  118. private String sceneFrom;
  119. /**
  120. * 切图方式(tiles:瓦片图,face:切片图,pan:全景图 ,local:本地切片,cube:立体图)
  121. */
  122. private String sceneKind;
  123. /**
  124. * 视频覆盖数据
  125. */
  126. private String boxVideos;
  127. /**
  128. *点位视频
  129. */
  130. private JSONObject 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 Float floorPlanAngle;
  147. /**
  148. * 指南针角度
  149. */
  150. private Float floorPlanCompass;
  151. }