SceneInfoVo.java 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. package com.fdkankan.app.vo.response;
  2. import lombok.Data;
  3. import java.math.BigInteger;
  4. @Data
  5. public class SceneInfoVo {
  6. private static final long serialVersionUID = 2454435822930272529L;
  7. private Long id;
  8. /**"场景缩略图", name = "thumb*/
  9. private String thumb;
  10. /**"大场景的密钥", name = "sceneKey*/
  11. private String sceneKey;
  12. /**"场景名称", name = "sceneName*/
  13. private String sceneName;
  14. /**"场景描述", name = "sceneDec*/
  15. private String sceneDec;
  16. /**"0表示其他,1表示文博,2表示地产,3表示电商,4表示餐饮,5表示家居", name = "sceneType*/
  17. private int sceneType;
  18. /**"场景封面图是否默认", name = "thumbImg*/
  19. private int thumbImg;
  20. /**"版本", name = "version*/
  21. private int version;
  22. /**"0表示默认,user表示自己上传", name = "markerLogo*/
  23. private String markerLogo;
  24. /**"0表示默认,user表示自己上传", name = "floorLogo*/
  25. private String floorLogo;
  26. /**"标记大小", name = "floorLogoSize*/
  27. private int floorLogoSize;
  28. /**"表示初始点信息", name = "entry*/
  29. private String entry;
  30. /**"创建时间", name = "createTime*/
  31. private String createTime;
  32. /**"拍摄数量", name = "shootCount*/
  33. private int shootCount;
  34. /**"0表示未建好,1表示建好,-1表示出错,-2表示不要在官网上显示", name = "status*/
  35. private int status;
  36. /**"模型贴图的风格", name = "sceneIndex*/
  37. private int sceneIndex;
  38. /**"背景音乐名称", name = "hasBGM*/
  39. private String hasBGM;
  40. /**"方案:1是双目,2是转台,3是六目", name = "cameraType*/
  41. private int cameraType;
  42. /**"是否公开,0公开,1加密", name = "isPublic*/
  43. private int isPublic;
  44. /**"要gps定位", name = "gps*/
  45. private String gps;
  46. /**"相机的Mac地址", name = "childName*/
  47. private String childName;
  48. /**"用户名", name = "userName*/
  49. private String userName;
  50. /**"昵称", name = "nickName*/
  51. private String nickName;
  52. /**"浏览次数", name = "viewCount*/
  53. private int viewCount;
  54. /**"场景的链接地址", name = "webSite*/
  55. private String webSite;
  56. /**"原始的大场景数据", name = "dataSource*/
  57. private String dataSource;
  58. /**"0表示未付款,1表示付款了,-1表示欠费(八目场景指锁住),-2表示临时空间(八目场景)", name = "payStatus*/
  59. private int payStatus;
  60. /**"手机id", name = "phoneId*/
  61. private String phoneId;
  62. /**"大场景序号", name = "num*/
  63. private String num;
  64. /**"1表示推荐,0表示正常", name = "recommend*/
  65. private int recommend;
  66. /**"表示缩略图是否存在", name = "thumbStatus*/
  67. private int thumbStatus;
  68. /**"要上传的热点的id集合,用逗号隔开", name = "hotsIds*/
  69. private String hotsIds;
  70. /**"大场景初始点的id", name = "initialPointId*/
  71. private String initialPointId;
  72. /**"风格", name = "style*/
  73. private int style;
  74. /**"方案:1是双目,2是转台,3是六目", name = "sceneScheme*/
  75. private int sceneScheme;
  76. /**"背景音乐名称", name = "bgMusic*/
  77. private String bgMusic;
  78. /**"用户id", name = "userId*/
  79. private Long userId;
  80. /**"相机id", name = "cameraId*/
  81. private Long cameraId;
  82. /**"使用容量", name = "space*/
  83. private BigInteger space;
  84. /**"创建日期时间戳", name = "createDate*/
  85. private Long createDate;
  86. /**"分享的logo和生成二维码的logo", name = "shareLogo*/
  87. private String shareLogo;
  88. /**"小地图浏览", name = "mapVisi*/
  89. private int mapVisi;
  90. /**"自动导览", name = "tourVisi*/
  91. private int tourVisi;
  92. /**"vr模式", name = "vrVisi*/
  93. private int vrVisi;
  94. /**
  95. * 普通录屏文件地址
  96. */
  97. private String screencapVoiceSrc;
  98. /**
  99. * 录音文件地址
  100. */
  101. private String screencapVoiceSound;
  102. /**
  103. * 同步录音文件地址
  104. */
  105. private String screencapVoiceSoundsync;
  106. /**
  107. * 选择的类型,sound为screencapVoiceSound,file为screencapVoiceSrc
  108. */
  109. private String screencapVoiceType;
  110. /**
  111. * 录屏文件地址
  112. */
  113. private String playData;
  114. /**
  115. * 重新建模的版本
  116. */
  117. private int floorEditVer;
  118. /**
  119. * 正式发布重新建模的版本
  120. */
  121. private int floorPublishVer;
  122. /**
  123. * 录屏图片
  124. */
  125. private String screencapThumb;
  126. /**
  127. * cad平面图参数
  128. */
  129. private String cadInfo;
  130. /**
  131. * cad平面图参数
  132. */
  133. private String floorPlanPng;
  134. /**
  135. * 展示页面是否显示标尺
  136. */
  137. private int rulerVisi;
  138. /**
  139. * 展示页面cad图在平面图是否显示
  140. */
  141. private int cadImgVisi;
  142. private int panoVisi;
  143. private int m2dVisi;
  144. private int m3dVisi;
  145. private int measureVisi;
  146. private String videos;
  147. private String snCode;
  148. private String overlay;
  149. private Integer showLogoBottom;
  150. private String recStatus;
  151. private Integer needKey;
  152. private String buildType;
  153. private Integer imagesVersion;
  154. private String bgMusicName;
  155. /**
  156. * 协作者用户id
  157. */
  158. private String cooperationUserId;
  159. private String cooperationUserName;
  160. private Integer sceneSource;
  161. private boolean jumpScene;
  162. /**
  163. * 服务器的服务商
  164. */
  165. private String ecs;
  166. /**
  167. * 场景来源方式,为app提供,0相机,1用户,2协作者
  168. */
  169. private Integer sceneSourceType;
  170. /**
  171. * 随心装场景码
  172. */
  173. private String vrNum;
  174. /**
  175. * 随心装场景码
  176. */
  177. private String vrThumb;
  178. /**
  179. * 旋转角度
  180. */
  181. private String floorPlanAngle;
  182. private Integer isFolder;
  183. private String videosUser;
  184. private Integer isUpgrade;
  185. }