RequestLiveStreamingBean.java
1.03 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
package com.wd.foundation.bean.response;
import java.util.List;
import com.wd.foundation.bean.base.BaseBean;
public class RequestLiveStreamingBean extends BaseBean {
private List<ContentsBean> contents;
public List<ContentsBean> getContents() {
return contents;
}
public void setContents(List<ContentsBean> contents) {
this.contents = contents;
}
public static class ContentsBean {
private String contentId;
private String relId;
private String relType;
public String getContentId() {
return contentId;
}
public void setContentId(String contentId) {
this.contentId = contentId;
}
public String getRelId() {
return relId;
}
public void setRelId(String relId) {
this.relId = relId;
}
public String getRelType() {
return relType;
}
public void setRelType(String relType) {
this.relType = relType;
}
}
}