From ba3c38d7d352800ccda6c68bb015b071d0794b42 Mon Sep 17 00:00:00 2001 From: 朱俊杰 <502612493@qq.com> Date: 星期三, 16 三月 2022 11:21:39 +0800 Subject: [PATCH] 去掉createinfo中的cseq参数 --- src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java | 65 ++++++++++++++++++++++++++++++++ 1 files changed, 65 insertions(+), 0 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 96fcd36..8df7939 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 @@ -104,6 +104,31 @@ */ private int channelCount; + /** + * 鍏变韩鎵�鏈夌殑鐩存挱娴� + */ + private boolean shareAllLiveStream; + + /** + * 榛樿鐩綍Id,鑷姩娣诲姞鐨勯�氶亾澶氭斁鍦ㄨ繖涓洰褰曚笅 + */ + private String catalogId; + + /** + * 宸茶璁㈤槄鐩綍淇℃伅 + */ + private boolean catalogSubscribe; + + /** + * 宸茶璁㈤槄鎶ヨ淇℃伅 + */ + private boolean alarmSubscribe; + + /** + * 宸茶璁㈤槄GPS淇℃伅 + */ + private boolean gpsSubscribe; + public Integer getId() { return id; } @@ -264,4 +289,44 @@ 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 isGpsSubscribe() { + return gpsSubscribe; + } + + public void setGpsSubscribe(boolean gpsSubscribe) { + this.gpsSubscribe = gpsSubscribe; + } } -- Gitblit v1.8.0