package com.guwan.backend.dto.live; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; @Data @Schema(description = "创建直播间请求") public class CreateRoomRequest { @Schema(description = "直播间标题") private String title; @Schema(description = "直播间描述") private String description; @Schema(description = "主播用户ID") private Long userId; }