From 4dcc7df555e0027adcea89aa2590eb56605398c2 Mon Sep 17 00:00:00 2001
From: xiaoxie <hotcoffie@163.com>
Date: 星期四, 21 四月 2022 10:03:21 +0800
Subject: [PATCH] 修复前端一处v-for没有key的警告
---
src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java | 34 ++++++++++++++++++++++++++++------
1 files changed, 28 insertions(+), 6 deletions(-)
diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
index 3e5d222..4b63ec5 100644
--- a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
+++ b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
@@ -77,9 +77,13 @@
private String CallId;
/**
- * 鏄惁鏄痯lay锛� false鏄痯layback
+ * 鎾斁绫诲瀷
*/
- private boolean isPlay;
+ private InviteStreamType playType;
+
+ private byte[] transaction;
+
+ private byte[] dialog;
public String getIp() {
return ip;
@@ -193,11 +197,29 @@
CallId = callId;
}
- public boolean isPlay() {
- return isPlay;
+ public InviteStreamType getPlayType() {
+ return playType;
}
- public void setPlay(boolean play) {
- isPlay = play;
+ public void setPlayType(InviteStreamType playType) {
+ this.playType = playType;
}
+
+ public byte[] getTransaction() {
+ return transaction;
+ }
+
+ public void setTransaction(byte[] transaction) {
+ this.transaction = transaction;
+ }
+
+ public byte[] getDialog() {
+ return dialog;
+ }
+
+ public void setDialog(byte[] dialog) {
+ this.dialog = dialog;
+ }
+
+
}
--
Gitblit v1.8.0