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 |   94 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 93 insertions(+), 1 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 0626384..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,36 +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;
+    @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;
+    @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;
@@ -264,4 +307,53 @@
     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