648540858
2024-05-29 764d04b497356ba6bcbb75fd42b51eca750f7223
src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
old mode 100644 new mode 100755
@@ -66,7 +66,7 @@
     * 设备端口
     */
    @Schema(description = "设备端口")
    private String devicePort;
    private int devicePort;
    /**
     * SIP认证用户名(默认使用设备国标编号)
@@ -186,6 +186,12 @@
    @Schema(description = "是否作为消息通道")
    private boolean asMessageChannel;
    @Schema(description = "是否作为消息通道")
    private boolean autoPushChannel;
    @Schema(description = "点播回复200OK使用次IP")
    private String sendStreamIp;
    public Integer getId() {
        return id;
    }
@@ -258,11 +264,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;
    }
@@ -425,4 +431,20 @@
    public void setAsMessageChannel(boolean asMessageChannel) {
        this.asMessageChannel = asMessageChannel;
    }
    public boolean isAutoPushChannel() {
        return autoPushChannel;
    }
    public void setAutoPushChannel(boolean autoPushChannel) {
        this.autoPushChannel = autoPushChannel;
    }
    public String getSendStreamIp() {
        return sendStreamIp;
    }
    public void setSendStreamIp(String sendStreamIp) {
        this.sendStreamIp = sendStreamIp;
    }
}