Helius
2021-12-16 95eb28c414a93000baa96784de0f096be0789fac
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
30
31
32
33
34
35
36
37
38
39
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 = "VideoListVo", description = "视频列表返回参数类")
public class VideoListVo {
 
    @ApiModelProperty(value = "视频ID")
    private Long id;
 
    @ApiModelProperty(value = "视频标题")
    private String title;
 
    @ApiModelProperty(value = "缩略图")
    private String thumb;
 
    @ApiModelProperty(value = "视频编码")
    private String code;
 
    @ApiModelProperty(value = "简介")
    private String intro;
 
    @ApiModelProperty(value = "是否免费 1/免费 2/会员")
    private Integer isFree;
 
    @ApiModelProperty(value = "时长")
    private String timeLength;
 
    @ApiModelProperty(value = "剧集数量")
    private Integer itemCnt;
 
}