Commit ba8a4b37 by guoxuejian Committed by gdj

feat: add workspaceId and reason fields to LiveTypeDTO for enhanced session management

parent 7b10e281
...@@ -31,6 +31,12 @@ public class LiveTypeDTO { ...@@ -31,6 +31,12 @@ public class LiveTypeDTO {
@JsonProperty("camera_position") @JsonProperty("camera_position")
private CameraPositionEnum cameraPosition; private CameraPositionEnum cameraPosition;
@JsonProperty("workspace_id")
private String workspaceId;
/** manual / stalled / interrupted / device_error */
private String reason;
/** /**
* 观看会话ID,由服务端在 liveStart 时生成(UUID),前端在 heartbeat/stop 时回传。 * 观看会话ID,由服务端在 liveStart 时生成(UUID),前端在 heartbeat/stop 时回传。
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment