瀏覽代碼

http://192.168.0.21/index.php?m=bug&f=view&bugID=30563

dengsixing 3 年之前
父節點
當前提交
996be6c643

+ 19 - 0
src/main/java/com/fdkankan/repair/bean/SceneJsonBean.java

@@ -187,6 +187,25 @@ public class SceneJsonBean {
      */
     private List<JSONObject> mosaicList;
 
+    /**
+     * 是否有保存导览(0-否,1-是)
+     */
+    private Integer tours;
+
+    /**
+     * 是否有马赛克
+     */
+    private Integer mosaic;
+
+    /**
+     * 水印文件名
+     */
+    private String waterMark;
+
+    /**
+     * 是否有场景关联(0-否,1-是)
+     */
+    private Integer links;
 
 
 

+ 24 - 0
src/main/java/com/fdkankan/repair/entity/SceneEditInfoExt.java

@@ -55,6 +55,30 @@ public class SceneEditInfoExt implements Serializable {
     private String vrNum;
 
     /**
+     * 是否有保存导览(0-否,1-是)
+     */
+    @TableField("tours")
+    private Integer tours;
+
+    /**
+     * 是否有马赛克
+     */
+    @TableField("mosaic")
+    private Integer mosaic;
+
+    /**
+     * 水印文件名
+     */
+    @TableField("water_mark")
+    private String waterMark;
+
+    /**
+     * 是否有场景关联(0-否,1-是)
+     */
+    @TableField("links")
+    private Integer links;
+
+    /**
      * 创建时间
      */
     @TableField("create_time")