xubinbin
2023-12-12 42a2772d1aa7493bcc4fac3e24ee8eda4eebc23d
src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
old mode 100644 new mode 100755
@@ -53,7 +53,7 @@
    /**
     * 设备国标编号
     */
    @Schema(description = "11111")
    @Schema(description = "设备国标编号")
    private String deviceGBId;
    /**
@@ -84,13 +84,13 @@
     * 注册周期 (秒)
     */
    @Schema(description = "注册周期 (秒)")
    private String expires;
    private int expires;
    /**
     * 心跳周期(秒)
     */
    @Schema(description = "心跳周期(秒)")
    private String keepTimeout;
    private int keepTimeout;
    /**
     * 传输协议
@@ -113,7 +113,6 @@
    /**
     * RTCP流保活
     * TODO 预留, 暂不实现
     */
    @Schema(description = "RTCP流保活")
    private boolean rtcp;
@@ -184,11 +183,11 @@
    @Schema(description = "创建时间")
    private String createTime;
    /**
     * 树类型 国标规定了两种树的展现方式 行政区划 CivilCode 和业务分组:BusinessGroup
     */
    @Schema(description = "树类型 国标规定了两种树的展现方式 行政区划 CivilCode 和业务分组:BusinessGrou")
    private String treeType;
    @Schema(description = "是否作为消息通道")
    private boolean asMessageChannel;
    @Schema(description = "是否作为消息通道")
    private boolean autoPushChannel;
    public Integer getId() {
        return id;
@@ -286,19 +285,19 @@
        this.password = password;
    }
    public String getExpires() {
    public int getExpires() {
        return expires;
    }
    public void setExpires(String expires) {
    public void setExpires(int expires) {
        this.expires = expires;
    }
    public String getKeepTimeout() {
    public int getKeepTimeout() {
        return keepTimeout;
    }
    public void setKeepTimeout(String keepTimeout) {
    public void setKeepTimeout(int keepTimeout) {
        this.keepTimeout = keepTimeout;
    }
@@ -422,11 +421,19 @@
        this.createTime = createTime;
    }
    public String getTreeType() {
        return treeType;
    public boolean isAsMessageChannel() {
        return asMessageChannel;
    }
    public void setTreeType(String treeType) {
        this.treeType = treeType;
    public void setAsMessageChannel(boolean asMessageChannel) {
        this.asMessageChannel = asMessageChannel;
    }
    public boolean isAutoPushChannel() {
        return autoPushChannel;
    }
    public void setAutoPushChannel(boolean autoPushChannel) {
        this.autoPushChannel = autoPushChannel;
    }
}