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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package cc.mrbird.febs.video.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author wzy
 * @date 2021-12-16
 **/
@Data
@ApiModel(value = "VideoInfoVo", description = "视频信息返回参数类")
public class VideoInfoVo {
 
    @ApiModelProperty(value = "标题")
    private String title;
 
    @ApiModelProperty(value = "简介")
    private String intro;
 
    @ApiModelProperty(value = "当前播放视频标题")
    private String subTitle;
 
    @ApiModelProperty(value = "当前播放视频链接")
    private String videoUrl;
 
    @ApiModelProperty(value = "当前播放视频缩略图")
    private String thumb;
 
    @ApiModelProperty(value = "当前播放视频时长")
    private String timeLength;
 
    @ApiModelProperty(value = "当前播放itemid")
    private Long itemId;
 
    @ApiModelProperty(value = "1-已登录 2-未登录")
    private Integer notLogin;
 
    @ApiModelProperty(value = "1-是vip 2-非vip")
    private Integer notVip;
 
    @ApiModelProperty(value = "点赞数量")
    private int starCnt;
 
    @ApiModelProperty(value = "收藏量")
    private int collectCnt;
 
    @ApiModelProperty(value = "播放量")
    private int playCnt;
 
    @ApiModelProperty(value = "视频剧集")
    private List<VideoInfoItemVo> items;
}