648540858
2024-03-21 4134c73745ff63d44186ed608735ea432b244755
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 = "是否是默认ZLM")
    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;
    }
}