SceneJsonBean.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. package com.fdkankan.scene.bean;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.fdkankan.scene.vo.SceneEditControlsVO;
  5. import lombok.AllArgsConstructor;
  6. import lombok.Builder;
  7. import lombok.Data;
  8. import lombok.NoArgsConstructor;
  9. import java.util.Date;
  10. import java.util.List;
  11. /**
  12. * <p>
  13. * scene.json实体类
  14. * </p>
  15. *
  16. * @author dengsixing
  17. * @since 2022/1/19
  18. **/
  19. @Data
  20. @Builder
  21. @NoArgsConstructor
  22. @AllArgsConstructor
  23. public class SceneJsonBean {
  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 String[] floorPlanPaths;
  82. /**
  83. * 是否上传了户型图(0-否,1-是)
  84. */
  85. private Byte floorPlanUser;
  86. // private String cadInfo;
  87. // /**
  88. // * 是否上传模型
  89. // */
  90. // private Byte isUploadObj;
  91. //
  92. // /**
  93. // * 重新建模的版本
  94. // */
  95. // private Integer floorEditVer;
  96. //
  97. // /**
  98. // * 正式发布重新建模的版本
  99. // */
  100. // private Integer floorPublishVer;
  101. /**
  102. * 初始点信息
  103. */
  104. private String entry;
  105. /**
  106. * 全景图加载方式,tiles/1k:1k瓦片图,tiles/2:2k瓦片图,tiles/4k:4k瓦片图,pan:全景图 ,local:本地切片,cube:立体图
  107. */
  108. private String sceneResolution;
  109. /**
  110. * 场景来源,lite:双目lite相机,pro:八目相机,minion:双面转台相机,laser:激光相机,virtual:虚拟场景,sketch:图片建模场景
  111. */
  112. private String sceneFrom;
  113. /**
  114. * 切图方式(tiles:瓦片图,face:切片图,pan:全景图 ,local:本地切片,cube:立体图)
  115. */
  116. private String sceneKind;
  117. /**
  118. * 空间视频数据
  119. */
  120. private String boxVideos;
  121. /**
  122. * 空间贴图数据
  123. */
  124. private String boxPhotos;
  125. /**
  126. *点位视频
  127. */
  128. private String videos;
  129. /**
  130. * 是否有热点数据
  131. */
  132. private Integer tags;
  133. /**
  134. * 加载logo名
  135. */
  136. private String loadingLogo;
  137. /**
  138. * 加载logo文件名
  139. */
  140. private String loadingLogoFile;
  141. private Integer payStatus;
  142. /**
  143. * 户型角度
  144. */
  145. private Float floorPlanAngle;
  146. /**
  147. * 指南针角度
  148. */
  149. private Float floorPlanCompass;
  150. /**
  151. * 是否保存导览
  152. */
  153. private Integer tours;
  154. /**
  155. * 是否有场景关联(0-否,1-是)
  156. */
  157. private Integer links;
  158. }