|
@@ -1,7 +1,9 @@
|
|
|
package com.fdkankan.contro.bean;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.fdkankan.contro.vo.SceneEditControlsVO;
|
|
|
+import java.util.List;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Builder;
|
|
|
import lombok.Data;
|
|
@@ -75,16 +77,6 @@ public class SceneJsonBean {
|
|
|
*/
|
|
|
private Date createTime;
|
|
|
|
|
|
-// /**
|
|
|
-// * 点位数量
|
|
|
-// */
|
|
|
-// private Integer panoCount;
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 球幕视频数量
|
|
|
-// */
|
|
|
-// private Integer videoCount;
|
|
|
-
|
|
|
/**
|
|
|
* 版本
|
|
|
*/
|
|
@@ -95,33 +87,16 @@ public class SceneJsonBean {
|
|
|
*/
|
|
|
private Integer imgVersion;
|
|
|
|
|
|
-// /**
|
|
|
-// * 户型图文件路径集合
|
|
|
-// */
|
|
|
-// private String[] floorPlanPaths;
|
|
|
+ /**
|
|
|
+ * 场景关联版本
|
|
|
+ */
|
|
|
+ private Integer linkVersion;
|
|
|
|
|
|
/**
|
|
|
* 是否上传了户型图(0-否,1-是)
|
|
|
*/
|
|
|
private Byte floorPlanUser;
|
|
|
|
|
|
-// private String cadInfo;
|
|
|
-
|
|
|
-// /**
|
|
|
-// * 是否上传模型
|
|
|
-// */
|
|
|
-// private Byte isUploadObj;
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 重新建模的版本
|
|
|
-// */
|
|
|
-// private Integer floorEditVer;
|
|
|
-//
|
|
|
-// /**
|
|
|
-// * 正式发布重新建模的版本
|
|
|
-// */
|
|
|
-// private Integer floorPublishVer;
|
|
|
-
|
|
|
/**
|
|
|
* 初始点信息
|
|
|
*/
|
|
@@ -199,5 +174,30 @@ public class SceneJsonBean {
|
|
|
*/
|
|
|
private Integer links;
|
|
|
|
|
|
+ /**
|
|
|
+ * 是否有马赛克
|
|
|
+ */
|
|
|
+ private Integer mosaic;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 马赛克列表
|
|
|
+ */
|
|
|
+ private List<JSONObject> mosaicList;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 水印文件名
|
|
|
+ */
|
|
|
+ private String waterMark;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否有滤镜(0-否,1-是)
|
|
|
+ */
|
|
|
+ private Integer filters;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否有监控摄像头数据
|
|
|
+ */
|
|
|
+ private Integer surveillances;
|
|
|
+
|
|
|
|
|
|
}
|