From 1de344674afd6bb35b51b165bbad76dbe6299b7e Mon Sep 17 00:00:00 2001
From: 648540858 <648540858@qq.com>
Date: 星期四, 28 三月 2024 18:08:33 +0800
Subject: [PATCH] 使用冒号分隔redis的key

---
 src/main/java/com/genersoft/iot/vmp/vmanager/bean/StreamContent.java |   72 ++++++++++++++++++++++++++++++++++++
 1 files changed, 72 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/vmanager/bean/StreamContent.java b/src/main/java/com/genersoft/iot/vmp/vmanager/bean/StreamContent.java
old mode 100644
new mode 100755
index e7c24aa..4974209
--- a/src/main/java/com/genersoft/iot/vmp/vmanager/bean/StreamContent.java
+++ b/src/main/java/com/genersoft/iot/vmp/vmanager/bean/StreamContent.java
@@ -1,44 +1,101 @@
 package com.genersoft.iot.vmp.vmanager.bean;
 
 import com.genersoft.iot.vmp.common.StreamInfo;
+import com.genersoft.iot.vmp.service.bean.DownloadFileInfo;
+import io.swagger.v3.oas.annotations.media.Schema;
 
+@Schema(description = "娴佷俊鎭�")
 public class StreamContent {
 
+    @Schema(description = "搴旂敤鍚�")
     private String app;
+
+    @Schema(description = "娴両D")
     private String stream;
 
+    @Schema(description = "IP")
     private String ip;
 
+    @Schema(description = "HTTP-FLV娴佸湴鍧�")
     private String flv;
 
+    @Schema(description = "HTTPS-FLV娴佸湴鍧�")
     private String https_flv;
+
+    @Schema(description = "Websocket-FLV娴佸湴鍧�")
     private String ws_flv;
+
+    @Schema(description = "Websockets-FLV娴佸湴鍧�")
     private String wss_flv;
+
+    @Schema(description = "HTTP-FMP4娴佸湴鍧�")
     private String fmp4;
+
+    @Schema(description = "HTTPS-FMP4娴佸湴鍧�")
     private String https_fmp4;
+
+    @Schema(description = "Websocket-FMP4娴佸湴鍧�")
     private String ws_fmp4;
+
+    @Schema(description = "Websockets-FMP4娴佸湴鍧�")
     private String wss_fmp4;
+
+    @Schema(description = "HLS娴佸湴鍧�")
     private String hls;
+
+    @Schema(description = "HTTPS-HLS娴佸湴鍧�")
     private String https_hls;
+
+    @Schema(description = "Websocket-HLS娴佸湴鍧�")
     private String ws_hls;
+
+    @Schema(description = "Websockets-HLS娴佸湴鍧�")
     private String wss_hls;
+
+    @Schema(description = "HTTP-TS娴佸湴鍧�")
     private String ts;
+
+    @Schema(description = "HTTPS-TS娴佸湴鍧�")
     private String https_ts;
+
+    @Schema(description = "Websocket-TS娴佸湴鍧�")
     private String ws_ts;
+
+    @Schema(description = "Websockets-TS娴佸湴鍧�")
     private String wss_ts;
+
+    @Schema(description = "RTMP娴佸湴鍧�")
     private String rtmp;
+
+    @Schema(description = "RTMPS娴佸湴鍧�")
     private String rtmps;
+
+    @Schema(description = "RTSP娴佸湴鍧�")
     private String rtsp;
+
+    @Schema(description = "RTSPS娴佸湴鍧�")
     private String rtsps;
+
+    @Schema(description = "RTC娴佸湴鍧�")
     private String rtc;
 
+    @Schema(description = "RTCS娴佸湴鍧�")
     private String rtcs;
+
+    @Schema(description = "娴佸獟浣揑D")
     private String mediaServerId;
+
+    @Schema(description = "娴佺紪鐮佷俊鎭�")
     private Object tracks;
 
+    @Schema(description = "寮�濮嬫椂闂�")
     private String startTime;
 
+    @Schema(description = "缁撴潫鏃堕棿")
     private String endTime;
+
+    @Schema(description = "鏂囦欢涓嬭浇鍦板潃锛堝綍鍍忎笅杞戒娇鐢級")
+    private DownloadFileInfo downLoadFilePath;
 
     private double progress;
 
@@ -62,6 +119,9 @@
         }
         if (streamInfo.getFmp4() != null) {
             this.fmp4 = streamInfo.getFmp4().getUrl();
+        }
+        if (streamInfo.getHttps_fmp4() != null) {
+            this.https_fmp4 = streamInfo.getHttps_fmp4().getUrl();
         }
         if (streamInfo.getWs_fmp4() != null) {
             this.ws_fmp4 = streamInfo.getWs_fmp4().getUrl();
@@ -114,6 +174,10 @@
         this.startTime = streamInfo.getStartTime();
         this.endTime = streamInfo.getEndTime();
         this.progress = streamInfo.getProgress();
+
+        if (streamInfo.getDownLoadFilePath() != null) {
+            this.downLoadFilePath = streamInfo.getDownLoadFilePath();
+        }
     }
 
     public String getApp() {
@@ -355,4 +419,12 @@
     public void setProgress(double progress) {
         this.progress = progress;
     }
+
+    public DownloadFileInfo getDownLoadFilePath() {
+        return downLoadFilePath;
+    }
+
+    public void setDownLoadFilePath(DownloadFileInfo downLoadFilePath) {
+        this.downLoadFilePath = downLoadFilePath;
+    }
 }

--
Gitblit v1.8.0