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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.yanzuoguang.media;
import com.yanzuoguang.util.vo.BaseVo;
import io.swagger.annotations.ApiModelProperty;
/**
* 获取视频首页请求参数
*
* @author 颜佐光
*/
public class MediaReqVo extends BaseVo {
/**
* 汲取视频的url
*/
@ApiModelProperty(notes = "m3mu地址")
private String url;
/**
* m3mu地址截取次数
*/
@ApiModelProperty(notes = "m3mu地址截取次数")
private int count;
/**
* m3mu地址截取间隔时间
*/
@ApiModelProperty(notes = "m3mu地址截取间隔时间")
private int split;
/**
* m3mu缓存的图片地址
*/
@ApiModelProperty(notes = "m3mu缓存的图片地址")
private String imageUrl;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public int getSplit() {
return split;
}
public void setSplit(int split) {
this.split = split;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
}