ContentVideoBean.java
1.6 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.wd.foundation.bean.response;
import java.io.Serializable;
/**
* 描述:点播视频【非原片】 转码后
*
* @author : lvjinhui
* @since: 2022/7/17
*/
public class ContentVideoBean implements Serializable {
/**
* url string
* 视频地址
* duration integer
* 视频时长 单位秒
* landscape integer
* 横屏竖屏 1横屏 2竖屏
* clarity integer
* 清晰度 1极速 2标准 3高清 4超清;【默认 数组 第一个播放】
*/
private int clarity;
private int duration;
private int landscape;
private String url;
private int resolutionHeight;
private int resolutionWidth;
public int getClarity() {
return clarity;
}
public void setClarity(int clarity) {
this.clarity = clarity;
}
public int getDuration() {
return duration;
}
public void setDuration(int duration) {
this.duration = duration;
}
public int getLandscape() {
return landscape;
}
public void setLandscape(int landscape) {
this.landscape = landscape;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public int getResolutionHeight() {
return resolutionHeight;
}
public void setResolutionHeight(int resolutionHeight) {
this.resolutionHeight = resolutionHeight;
}
public int getResolutionWidth() {
return resolutionWidth;
}
public void setResolutionWidth(int resolutionWidth) {
this.resolutionWidth = resolutionWidth;
}
}