From 1af77ab5f7c11a4b3d59c1989b51b9fca29679ce Mon Sep 17 00:00:00 2001
From: 648540858 <648540858@qq.com>
Date: 星期二, 18 十月 2022 22:18:49 +0800
Subject: [PATCH] Merge pull request #645 from IKangXu/wvp-28181-2.0

---
 src/main/java/com/genersoft/iot/vmp/common/StreamInfo.java |  200 +++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 191 insertions(+), 9 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/common/StreamInfo.java b/src/main/java/com/genersoft/iot/vmp/common/StreamInfo.java
index 771838d..93d837c 100644
--- a/src/main/java/com/genersoft/iot/vmp/common/StreamInfo.java
+++ b/src/main/java/com/genersoft/iot/vmp/common/StreamInfo.java
@@ -1,26 +1,79 @@
 package com.genersoft.iot.vmp.common;
 
-import com.alibaba.fastjson.JSONArray;
+import io.swagger.v3.oas.annotations.media.Schema;
 
+@Schema(description = "娴佷俊鎭�")
 public class StreamInfo {
 
+    @Schema(description = "搴旂敤鍚�")
     private String app;
-    private String streamId;
+    @Schema(description = "娴両D")
+    private String stream;
+    @Schema(description = "璁惧缂栧彿")
     private String deviceID;
+    @Schema(description = "閫氶亾缂栧彿")
     private String channelId;
+    @Schema(description = "HTTP-FLV娴佸湴鍧�")
     private String flv;
+
+    @Schema(description = "IP")
+    private String ip;
+    @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;
-    private JSONArray tracks;
+    @Schema(description = "娴佺紪鐮佷俊鎭�")
+    private Object tracks;
+    @Schema(description = "寮�濮嬫椂闂�")
+    private String startTime;
+    @Schema(description = "缁撴潫鏃堕棿")
+    private String endTime;
+    @Schema(description = "杩涘害锛堝綍鍍忎笅杞戒娇鐢級")
+    private double progress;
+
+    @Schema(description = "鏄惁鏆傚仠锛堝綍鍍忓洖鏀句娇鐢級")
+    private boolean pause;
 
     public static class TransactionInfo{
         public String callId;
@@ -95,11 +148,11 @@
         this.rtsp = rtsp;
     }
 
-    public JSONArray getTracks() {
+    public Object getTracks() {
         return tracks;
     }
 
-    public void setTracks(JSONArray tracks) {
+    public void setTracks(Object tracks) {
         this.tracks = tracks;
     }
 
@@ -143,12 +196,12 @@
         this.ws_ts = ws_ts;
     }
 
-    public String getStreamId() {
-        return streamId;
+    public String getStream() {
+        return stream;
     }
 
-    public void setStreamId(String streamId) {
-        this.streamId = streamId;
+    public void setStream(String stream) {
+        this.stream = stream;
     }
 
     public String getRtc() {
@@ -174,4 +227,133 @@
     public void setMediaServerId(String mediaServerId) {
         this.mediaServerId = mediaServerId;
     }
+
+    public String getHttps_flv() {
+        return https_flv;
+    }
+
+    public void setHttps_flv(String https_flv) {
+        this.https_flv = https_flv;
+    }
+
+    public String getWss_flv() {
+        return wss_flv;
+    }
+
+    public void setWss_flv(String wss_flv) {
+        this.wss_flv = wss_flv;
+    }
+
+    public String getWss_fmp4() {
+        return wss_fmp4;
+    }
+
+    public void setWss_fmp4(String wss_fmp4) {
+        this.wss_fmp4 = wss_fmp4;
+    }
+
+    public String getWss_hls() {
+        return wss_hls;
+    }
+
+    public void setWss_hls(String wss_hls) {
+        this.wss_hls = wss_hls;
+    }
+
+    public String getWss_ts() {
+        return wss_ts;
+    }
+
+    public void setWss_ts(String wss_ts) {
+        this.wss_ts = wss_ts;
+    }
+
+    public String getRtmps() {
+        return rtmps;
+    }
+
+    public void setRtmps(String rtmps) {
+        this.rtmps = rtmps;
+    }
+
+    public String getRtsps() {
+        return rtsps;
+    }
+
+    public void setRtsps(String rtsps) {
+        this.rtsps = rtsps;
+    }
+
+    public String getHttps_hls() {
+        return https_hls;
+    }
+
+    public void setHttps_hls(String https_hls) {
+        this.https_hls = https_hls;
+    }
+
+    public String getHttps_fmp4() {
+        return https_fmp4;
+    }
+
+    public void setHttps_fmp4(String https_fmp4) {
+        this.https_fmp4 = https_fmp4;
+    }
+
+    public String getHttps_ts() {
+        return https_ts;
+    }
+
+    public void setHttps_ts(String https_ts) {
+        this.https_ts = https_ts;
+    }
+
+
+    public String getStartTime() {
+        return startTime;
+    }
+
+    public void setStartTime(String startTime) {
+        this.startTime = startTime;
+    }
+
+    public String getEndTime() {
+        return endTime;
+    }
+
+    public void setEndTime(String endTime) {
+        this.endTime = endTime;
+    }
+
+    public double getProgress() {
+        return progress;
+    }
+
+    public void setProgress(double progress) {
+        this.progress = progress;
+    }
+
+    public String getIp() {
+        return ip;
+    }
+
+    public void setIp(String ip) {
+        this.ip = ip;
+    }
+
+    public String getRtcs() {
+        return rtcs;
+    }
+
+    public void setRtcs(String rtcs) {
+        this.rtcs = rtcs;
+    }
+
+    public boolean isPause() {
+        return pause;
+    }
+
+    public void setPause(boolean pause) {
+        this.pause = pause;
+    }
 }

--
Gitblit v1.8.0