xiaoyong931011
2021-12-17 5d9add8982a94cabc61c4acfb7573e8ca6f2e39d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cc.mrbird.febs.video.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-12-16
 **/
@Data
@ApiModel(value = "VideoInfoItemVo", description = "视频item返回参数类")
public class VideoInfoItemVo {
 
    @ApiModelProperty(value = "itemId")
    private Long id;
 
    @ApiModelProperty(value = "缩略图")
    private String thumb;
 
    @ApiModelProperty(value = "标题")
    private String name;
 
    @ApiModelProperty(value = "序号")
    private Integer seq;
 
    @ApiModelProperty(value = "时长")
    private String timeLength;
}