648540858
2022-04-08 ba8633e99a27b90c55b47e8f7d6225f1f0efc6bb
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;
    }
}