| | |
| | | /** |
| | | * 设备国标编号 |
| | | */ |
| | | @Schema(description = "11111") |
| | | @Schema(description = "设备国标编号") |
| | | private String deviceGBId; |
| | | |
| | | /** |
| | |
| | | * 心跳周期(秒) |
| | | */ |
| | | @Schema(description = "心跳周期(秒)") |
| | | private String keepTimeout; |
| | | private int keepTimeout; |
| | | |
| | | /** |
| | | * 传输协议 |
| | |
| | | |
| | | /** |
| | | * RTCP流保活 |
| | | * TODO 预留, 暂不实现 |
| | | */ |
| | | @Schema(description = "RTCP流保活") |
| | | private boolean rtcp; |
| | |
| | | this.expires = expires; |
| | | } |
| | | |
| | | public String getKeepTimeout() { |
| | | public int getKeepTimeout() { |
| | | return keepTimeout; |
| | | } |
| | | |
| | | public void setKeepTimeout(String keepTimeout) { |
| | | public void setKeepTimeout(int keepTimeout) { |
| | | this.keepTimeout = keepTimeout; |
| | | } |
| | | |