SceneInfoVO.java 5.1 KB

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