648540858
2023-06-25 66eda32ab97d6e94e9f274d6faa4df586c452dfb
src/main/java/com/genersoft/iot/vmp/gb28181/bean/ParentPlatform.java
@@ -66,7 +66,7 @@
     * 设备端口
     */
    @Schema(description = "设备端口")
    private String devicePort;
    private int devicePort;
    /**
     * SIP认证用户名(默认使用设备国标编号)
@@ -189,6 +189,9 @@
    @Schema(description = "树类型 国标规定了两种树的展现方式 行政区划 CivilCode 和业务分组:BusinessGrou")
    private String treeType;
    @Schema(description = "是否作为消息通道")
    private boolean asMessageChannel;
    public Integer getId() {
        return id;
    }
@@ -261,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;
    }
@@ -428,4 +431,12 @@
    public void setTreeType(String treeType) {
        this.treeType = treeType;
    }
    public boolean isAsMessageChannel() {
        return asMessageChannel;
    }
    public void setAsMessageChannel(boolean asMessageChannel) {
        this.asMessageChannel = asMessageChannel;
    }
}