From 4a0e9945b40e237aabd1cc41d180ca35355439ac Mon Sep 17 00:00:00 2001
From: 648540858 <648540858@qq.com>
Date: 星期二, 19 三月 2024 18:47:55 +0800
Subject: [PATCH] 调整节点管理代码结构
---
src/main/java/com/genersoft/iot/vmp/media/zlm/dto/MediaServerItem.java | 28 +++++++++++++++++-----------
1 files changed, 17 insertions(+), 11 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 7cbb2ae..511b953 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
@@ -1,7 +1,6 @@
package com.genersoft.iot.vmp.media.zlm.dto;
-import com.genersoft.iot.vmp.media.zlm.ZLMServerConfig;
import io.swagger.v3.oas.annotations.media.Schema;
import org.springframework.util.ObjectUtils;
@@ -80,14 +79,13 @@
@Schema(description = "鏄惁鏄粯璁LM")
private boolean defaultServer;
+ @Schema(description = "褰曞儚瀛樺偍鏃堕暱")
+ private int recordDay;
+
@Schema(description = "褰曞儚瀛樺偍璺緞")
private String recordPath;
-
- @Schema(description = "褰曞儚瀛樺偍鏃堕暱")
- private int recordDate;
-
-
-
+ @Schema(description = "绫诲瀷锛� zlm/abl")
+ private String type;
public MediaServerItem() {
}
@@ -306,6 +304,14 @@
this.sendRtpPortRange = sendRtpPortRange;
}
+ public int getRecordDay() {
+ return recordDay;
+ }
+
+ public void setRecordDay(int recordDay) {
+ this.recordDay = recordDay;
+ }
+
public String getRecordPath() {
return recordPath;
}
@@ -314,11 +320,11 @@
this.recordPath = recordPath;
}
- public int getRecordDate() {
- return recordDate;
+ public String getType() {
+ return type;
}
- public void setRecordDate(int recordDate) {
- this.recordDate = recordDate;
+ public void setType(String type) {
+ this.type = type;
}
}
--
Gitblit v1.8.0