ArticleVideoBean.java
3.1 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package com.wd.foundation.bean.web;
import android.text.TextUtils;
import com.wd.foundation.bean.base.BaseBean;
/**
* 图文详情视频bean
*
* @author baozhaoxin
* @version [V1.0.0, 2023/6/12]
* @since V1.0.0
*/
public class ArticleVideoBean extends BaseBean {
/**
* 视频位置左边距离值
*/
private String positionLeft;
/**
* 视频位置上边距离值
*/
private String positionTop;
/**
* 视频位置宽度
*/
private String positionWidth;
/**
* 视频位置高度
*/
private String positionHeight;
/**
* 视频实际宽度
*/
private String videoWidth;
/**
* 视频实际高度
*/
private String videoHeight;
/**
* 视频是否为横屏:1横屏,2竖屏
*/
private String videoLandscape;
/**
* 视频的链接
*/
private String videoUrl;
/**
* 视频封面的链接
*/
private String videoCoverUrl;
/**
* 视频时长
*/
private String videoDuration;
/**
* webview的高度
*/
private int webViewHeight;
public String getPositionLeft() {
return positionLeft;
}
public void setPositionLeft(String positionLeft) {
this.positionLeft = positionLeft;
}
public String getPositionTop() {
return positionTop;
}
public void setPositionTop(String positionTop) {
this.positionTop = positionTop;
}
public String getPositionWidth() {
return positionWidth;
}
public void setPositionWidth(String positionWidth) {
this.positionWidth = positionWidth;
}
public String getPositionHeight() {
return positionHeight;
}
public void setPositionHeight(String positionHeight) {
this.positionHeight = positionHeight;
}
public String getVideoWidth() {
return videoWidth;
}
public void setVideoWidth(String videoWidth) {
this.videoWidth = videoWidth;
}
public String getVideoHeight() {
return videoHeight;
}
public void setVideoHeight(String videoHeight) {
this.videoHeight = videoHeight;
}
public String getVideoLandscape() {
if (TextUtils.isEmpty(videoLandscape)) {
return "1";
}
return videoLandscape;
}
public void setVideoLandscape(String videoLandscape) {
this.videoLandscape = videoLandscape;
}
public String getVideoUrl() {
return videoUrl;
}
public void setVideoUrl(String videoUrl) {
this.videoUrl = videoUrl;
}
public String getVideoCoverUrl() {
return videoCoverUrl;
}
public void setVideoCoverUrl(String videoCoverUrl) {
this.videoCoverUrl = videoCoverUrl;
}
public String getVideoDuration() {
return videoDuration;
}
public void setVideoDuration(String videoDuration) {
this.videoDuration = videoDuration;
}
public int getWebViewHeight() {
return webViewHeight;
}
public void setWebViewHeight(int webViewHeight) {
this.webViewHeight = webViewHeight;
}
}