648540858
2023-03-20 26bdf2e7768ee5dfc400c3970a5aa129fed49453
src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
@@ -53,7 +53,7 @@
    /**
     * 设备国标编号
     */
    @Schema(description = "11111")
    @Schema(description = "设备国标编号")
    private String deviceGBId;
    /**
@@ -66,7 +66,7 @@
     * 设备端口
     */
    @Schema(description = "设备端口")
    private String devicePort;
    private int devicePort;
    /**
     * SIP认证用户名(默认使用设备国标编号)
@@ -90,7 +90,7 @@
     * 心跳周期(秒)
     */
    @Schema(description = "心跳周期(秒)")
    private String keepTimeout;
    private int keepTimeout;
    /**
     * 传输协议
@@ -113,7 +113,6 @@
    /**
     * RTCP流保活
     * TODO 预留, 暂不实现
     */
    @Schema(description = "RTCP流保活")
    private boolean rtcp;
@@ -262,11 +261,11 @@
        this.deviceIp = deviceIp;
    }
    public String getDevicePort() {
    public int getDevicePort() {
        return devicePort;
    }
    public void setDevicePort(String devicePort) {
    public void setDevicePort(int devicePort) {
        this.devicePort = devicePort;
    }
@@ -294,11 +293,11 @@
        this.expires = expires;
    }
    public String getKeepTimeout() {
    public int getKeepTimeout() {
        return keepTimeout;
    }
    public void setKeepTimeout(String keepTimeout) {
    public void setKeepTimeout(int keepTimeout) {
        this.keepTimeout = keepTimeout;
    }