| | |
| | | @Schema(description = "心跳时间") |
| | | private String keepaliveTime; |
| | | |
| | | |
| | | /** |
| | | * 心跳间隔 |
| | | */ |
| | | @Schema(description = "心跳间隔") |
| | | private int keepaliveIntervalTime; |
| | | |
| | | /** |
| | | * 通道个数 |
| | | */ |
| | |
| | | */ |
| | | @Schema(description = "树类型 国标规定了两种树的展现方式 行政区划:CivilCode 和业务分组:BusinessGroup") |
| | | private String treeType; |
| | | |
| | | @Schema(description = "密码") |
| | | private String password; |
| | | |
| | | @Schema(description = "收流IP") |
| | | private String sdpIp; |
| | | |
| | | @Schema(description = "SIP交互IP(设备访问平台的IP)") |
| | | private String localIp; |
| | | |
| | | @Schema(description = "是否作为消息通道") |
| | | private boolean asMessageChannel; |
| | | |
| | | |
| | | public String getDeviceId() { |
| | |
| | | public void setTreeType(String treeType) { |
| | | this.treeType = treeType; |
| | | } |
| | | |
| | | public String getPassword() { |
| | | return password; |
| | | } |
| | | |
| | | public void setPassword(String password) { |
| | | this.password = password; |
| | | } |
| | | |
| | | public String getSdpIp() { |
| | | return sdpIp; |
| | | } |
| | | |
| | | public void setSdpIp(String sdpIp) { |
| | | this.sdpIp = sdpIp; |
| | | } |
| | | |
| | | public String getLocalIp() { |
| | | return localIp; |
| | | } |
| | | |
| | | public void setLocalIp(String localIp) { |
| | | this.localIp = localIp; |
| | | } |
| | | |
| | | public int getKeepaliveIntervalTime() { |
| | | return keepaliveIntervalTime; |
| | | } |
| | | |
| | | public void setKeepaliveIntervalTime(int keepaliveIntervalTime) { |
| | | this.keepaliveIntervalTime = keepaliveIntervalTime; |
| | | } |
| | | |
| | | public boolean isAsMessageChannel() { |
| | | return asMessageChannel; |
| | | } |
| | | |
| | | public void setAsMessageChannel(boolean asMessageChannel) { |
| | | this.asMessageChannel = asMessageChannel; |
| | | } |
| | | } |