VideoInfo.java
2.28 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.wd.foundation.bean.mail;
import com.wd.foundation.bean.base.BaseBean;
/**
* @ProjectName: PeopleDailyEnglish
* @Package: com.wd.entity.mail
* @ClassName: LiveInfo
* @Description: 描述
* @Author: wd
* @CreateDate: 2023/2/13 17:53
* @UpdateUser: wd
* @UpdateDate: 2023/2/13 17:53
* @UpdateRemark: 更新说明:
* @Version: 1.0
*/
public class VideoInfo extends BaseBean {
/**
* // string必须 视频播放地址
* */
public String videoUrl;
/**
* // string必须 视频时长
* */
public String videoDuration;
/**
* // string必须1-横屏 2-竖屏
* */
public int videoLandScape;
/**
* // string必须 首帧图
* */
public String firstFrameImageUri;
/**
* 视频宽度
*/
public int resolutionWidth;
/**
* 视频高度
*/
public int resolutionHeight;
/**
* 视频的类型 1.内容视频 2.appStyle(英文版专用--中文版废弃) 3.正文视频(富文本)
*/
private String videoType;
public String getVideoUrl() {
return videoUrl;
}
public void setVideoUrl(String videoUrl) {
this.videoUrl = videoUrl;
}
public String getVideoDuration() {
return videoDuration;
}
public void setVideoDuration(String videoDuration) {
this.videoDuration = videoDuration;
}
public int getVideoLandScape() {
return videoLandScape;
}
public void setVideoLandScape(int videoLandScape) {
this.videoLandScape = videoLandScape;
}
public String getFirstFrameImageUri() {
return firstFrameImageUri;
}
public void setFirstFrameImageUri(String firstFrameImageUri) {
this.firstFrameImageUri = firstFrameImageUri;
}
public int getResolutionWidth() {
return resolutionWidth;
}
public void setResolutionWidth(int resolutionWidth) {
this.resolutionWidth = resolutionWidth;
}
public int getResolutionHeight() {
return resolutionHeight;
}
public void setResolutionHeight(int resolutionHeight) {
this.resolutionHeight = resolutionHeight;
}
public String getVideoType() {
return videoType;
}
public void setVideoType(String videoType) {
this.videoType = videoType;
}
}