parent
f0e417f1d7
commit
4b5a912784
|
@ -1,19 +0,0 @@
|
||||||
package com.guwan.backend.dto.video;
|
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.Parameter;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.Data;
|
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
|
||||||
|
|
||||||
@Schema(description = "视频上传DTO")
|
|
||||||
@Data
|
|
||||||
public class VideoUploadDTO {
|
|
||||||
@Schema(description = "视频文件地址")
|
|
||||||
String fileUrl;
|
|
||||||
@Schema(description = "视频标题")
|
|
||||||
String title;
|
|
||||||
@Schema(description = "视频描述")
|
|
||||||
String description;
|
|
||||||
@Schema(description = "视频标签,多个用逗号分隔", nullable = true)
|
|
||||||
String tags;
|
|
||||||
}
|
|
Loading…
Reference in New Issue