From 1768565ce045d4beddccc82d10b533ea3022cf8d Mon Sep 17 00:00:00 2001 From: 648540858 <648540858@qq.com> Date: 星期一, 18 三月 2024 23:42:18 +0800 Subject: [PATCH] 优化媒体节点服务的代码结构 --- src/main/java/com/genersoft/iot/vmp/media/zlm/dto/MediaServerItem.java | 40 ++++++++++++++++++++++++++++++---------- 1 files changed, 30 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/media/zlm/dto/MediaServerItem.java b/src/main/java/com/genersoft/iot/vmp/media/zlm/dto/MediaServerItem.java index 066a677..d00cfbe 100755 --- a/src/main/java/com/genersoft/iot/vmp/media/zlm/dto/MediaServerItem.java +++ b/src/main/java/com/genersoft/iot/vmp/media/zlm/dto/MediaServerItem.java @@ -80,9 +80,13 @@ @Schema(description = "鏄惁鏄粯璁LM") private boolean defaultServer; - @Schema(description = "褰撳墠浣跨敤鍒扮殑绔彛") - private int currentPort; + @Schema(description = "褰曞儚瀛樺偍鏃堕暱") + private int recordDay; + @Schema(description = "褰曞儚瀛樺偍璺緞") + private String recordPath; + @Schema(description = "绫诲瀷锛� zlm/abl") + private String type; public MediaServerItem() { } @@ -269,14 +273,6 @@ this.updateTime = updateTime; } - public int getCurrentPort() { - return currentPort; - } - - public void setCurrentPort(int currentPort) { - this.currentPort = currentPort; - } - public boolean isStatus() { return status; } @@ -308,4 +304,28 @@ public void setSendRtpPortRange(String sendRtpPortRange) { this.sendRtpPortRange = sendRtpPortRange; } + + public int getRecordDay() { + return recordDay; + } + + public void setRecordDay(int recordDay) { + this.recordDay = recordDay; + } + + public String getRecordPath() { + return recordPath; + } + + public void setRecordPath(String recordPath) { + this.recordPath = recordPath; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } } -- Gitblit v1.8.0