648540858
2022-03-14 bde0e13682ed75d2e8c0cb8a1fd6a96bb92f1dd8
src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
@@ -109,6 +109,26 @@
     */
    private boolean shareAllLiveStream;
    /**
     * 默认目录Id,自动添加的通道多放在这个目录下
     */
    private String catalogId;
    /**
     * 已被订阅目录信息
     */
    private boolean catalogSubscribe;
    /**
     * 已被订阅报警信息
     */
    private boolean alarmSubscribe;
    /**
     * 已被订阅GPS信息
     */
    private boolean gpsSubscribe;
    public Integer getId() {
        return id;
    }
@@ -277,4 +297,36 @@
    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;
    }
}