临时提交

This commit is contained in:
648540858
2024-09-07 00:04:36 +08:00
parent d472ed4485
commit b7e96de36a
18 changed files with 354 additions and 294 deletions

View File

@@ -7,16 +7,49 @@ import lombok.Data;
@Data
public class SsrcTransaction {
/**
* 设备编号
*/
private String deviceId;
/**
* 上级平台的编号
*/
private String platformId;
/**
* 通道的数据库ID
*/
private Integer channelId;
/**
* 会话的CALL ID
*/
private String callId;
/**
* 关联的流ID
*/
private String stream;
/**
* 使用的流媒体
*/
private String mediaServerId;
/**
* 使用的SSRC
*/
private String ssrc;
/**
* 事务信息
*/
private SipTransactionInfo sipTransactionInfo;
/**
* 类型
*/
private InviteSessionType type;
public static SsrcTransaction buildForDevice(String deviceId, Integer channelId, String callId, String stream,