临时提交

This commit is contained in:
648540858
2024-08-12 15:30:01 +08:00
parent 5ff232150d
commit 9a4a81a90e
5 changed files with 173 additions and 163 deletions

View File

@@ -0,0 +1,14 @@
package com.genersoft.iot.vmp.gb28181.bean;
import lombok.Data;
@Data
public class InviteDecodeException extends RuntimeException{
private int code;
private String msg;
public InviteDecodeException(int code, String msg) {
this.code = code;
this.msg = msg;
}
}

View File

@@ -0,0 +1,19 @@
package com.genersoft.iot.vmp.gb28181.bean;
import lombok.Data;
// 从INVITE消息中解析需要的信息
@Data
public class InviteInfo {
private String requesterId;
private String channelId;
private String sessionName;
private String ssrc;
private boolean tcp;
private boolean tcpActive;
private String callId;
private Long startTime;
private Long stopTime;
private String downloadSpeed;
}