From 05a324a07a1848b020a06d671680907f8b92207d Mon Sep 17 00:00:00 2001
From: mk1990 <37614016+mk1990@users.noreply.github.com>
Date: 星期四, 05 五月 2022 08:43:10 +0800
Subject: [PATCH] Merge branch '648540858:wvp-28181-2.0' into wvp-28181-2.0
---
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