VliveBean.java
3.4 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
package com.wd.foundation.bean.mail;
import java.util.List;
import com.wd.foundation.bean.base.BaseBean;
import com.wd.foundation.bean.live.WatermarkBean;
public class VliveBean extends BaseBean {
public String coverImageUrl;
public List<?> definition;
// 直播地址
public String liveUrl;
public String name;
// 直播回看地址
public String replayUri;
public String serialNum;
public Boolean shiftEnable;
public String type;
public String vliveId;
private Boolean showPad = false;
private Boolean mSelect = false;
/**
* 用于查询直播间水印所传的id参数liveStreamManagerId
*/
public String liveStreamManagerId;
public WatermarkBean watermarkBean;
public VliveBean() {
}
/**
* 0-横屏流画面,1-竖屏幕流画面
*/
private String liveStreamType;
public String getLiveStreamType() {
return liveStreamType;
}
public void setLiveStreamType(String liveStreamType) {
this.liveStreamType = liveStreamType;
}
public Boolean getmSelect() {
return mSelect;
}
public void setmSelect(Boolean mSelect) {
this.mSelect = mSelect;
}
public Boolean getShowPad() {
return showPad;
}
public void setShowPad(Boolean showPad) {
this.showPad = showPad;
}
public String getCoverImageUrl() {
return coverImageUrl;
}
public void setCoverImageUrl(String coverImageUrl) {
this.coverImageUrl = coverImageUrl;
}
public List<?> getDefinition() {
return definition;
}
public void setDefinition(List<?> definition) {
this.definition = definition;
}
public String getLiveUrl() {
return liveUrl;
}
public void setLiveUrl(String liveUrl) {
this.liveUrl = liveUrl;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getReplayUri() {
return replayUri;
}
public void setReplayUri(String replayUri) {
this.replayUri = replayUri;
}
public String getSerialNum() {
return serialNum;
}
public void setSerialNum(String serialNum) {
this.serialNum = serialNum;
}
public Boolean getShiftEnable() {
return shiftEnable;
}
public void setShiftEnable(Boolean shiftEnable) {
this.shiftEnable = shiftEnable;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getVliveId() {
return vliveId;
}
public void setVliveId(String vliveId) {
this.vliveId = vliveId;
}
public VliveBean(String coverImageUrl) {
this.coverImageUrl =
"http://sitcontentjdcdn.aikan.pdnews.cn/3486/image/display/20230221/021c707f22aa4e5d846a898b44a989ae.png?x-oss-process=image/resize,l_550/auto-orient,1/quality,q_90/format,jpg";
this.definition = definition;
this.liveUrl = "https://live.video.weibocdn.com/4898082770127687_index.m3u8";
this.name = "测试name";
this.replayUri = "https://live.video.weibocdn.com/4898082770127687_index.m3u8";
this.serialNum = "1";
this.shiftEnable = true;
this.type = type;
this.vliveId = "13212";
this.showPad = false;
this.mSelect = false;
}
}