From ba8633e99a27b90c55b47e8f7d6225f1f0efc6bb Mon Sep 17 00:00:00 2001
From: 648540858 <456panlinlin>
Date: 星期五, 08 四月 2022 18:09:23 +0800
Subject: [PATCH] 优化地图-添加地图页面以及设备树

---
 src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java |   88 +++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 83 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
index 0aec885..8aa7b37 100644
--- a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
+++ b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
@@ -3,6 +3,11 @@
 public class ParentPlatform {
 
     /**
+     * id
+     */
+    private Integer id;
+
+    /**
      * 鏄惁鍚敤
      */
     private boolean enable;
@@ -81,7 +86,7 @@
     /**
      * 鍏佽浜戝彴鎺у埗
      */
-    private boolean PTZEnable;
+    private boolean ptz;
 
     /**
      * RTCP娴佷繚娲�
@@ -99,6 +104,38 @@
      */
     private int channelCount;
 
+    /**
+     * 鍏变韩鎵�鏈夌殑鐩存挱娴�
+     */
+    private boolean shareAllLiveStream;
+
+    /**
+     * 榛樿鐩綍Id,鑷姩娣诲姞鐨勯�氶亾澶氭斁鍦ㄨ繖涓洰褰曚笅
+     */
+    private String catalogId;
+
+    /**
+     * 宸茶璁㈤槄鐩綍淇℃伅
+     */
+    private boolean catalogSubscribe;
+
+    /**
+     * 宸茶璁㈤槄鎶ヨ淇℃伅
+     */
+    private boolean alarmSubscribe;
+
+    /**
+     * 宸茶璁㈤槄绉诲姩浣嶇疆淇℃伅
+     */
+    private boolean mobilePositionSubscribe;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
 
     public boolean isEnable() {
         return enable;
@@ -220,12 +257,12 @@
         this.characterSet = characterSet;
     }
 
-    public boolean isPTZEnable() {
-        return PTZEnable;
+    public boolean isPtz() {
+        return ptz;
     }
 
-    public void setPTZEnable(boolean PTZEnable) {
-        this.PTZEnable = PTZEnable;
+    public void setPtz(boolean ptz) {
+        this.ptz = ptz;
     }
 
     public boolean isRtcp() {
@@ -251,4 +288,45 @@
     public void setChannelCount(int channelCount) {
         this.channelCount = channelCount;
     }
+
+
+    public boolean isShareAllLiveStream() {
+        return shareAllLiveStream;
+    }
+
+    public void setShareAllLiveStream(boolean shareAllLiveStream) {
+        this.shareAllLiveStream = shareAllLiveStream;
+    }
+
+    public String getCatalogId() {
+        return catalogId;
+    }
+
+    public void setCatalogId(String catalogId) {
+        this.catalogId = catalogId;
+    }
+
+    public boolean isCatalogSubscribe() {
+        return catalogSubscribe;
+    }
+
+    public void setCatalogSubscribe(boolean catalogSubscribe) {
+        this.catalogSubscribe = catalogSubscribe;
+    }
+
+    public boolean isAlarmSubscribe() {
+        return alarmSubscribe;
+    }
+
+    public void setAlarmSubscribe(boolean alarmSubscribe) {
+        this.alarmSubscribe = alarmSubscribe;
+    }
+
+    public boolean isMobilePositionSubscribe() {
+        return mobilePositionSubscribe;
+    }
+
+    public void setMobilePositionSubscribe(boolean mobilePositionSubscribe) {
+        this.mobilePositionSubscribe = mobilePositionSubscribe;
+    }
 }

--
Gitblit v1.8.0