LiveDetail.java
1.54 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
package com.cnlive.goldenline.model;
import android.support.annotation.NonNull;
import com.cnlive.goldenline.ui.model.ErrorMessage;
import java.util.List;
/**
* Created by zuoxian on 2015/9/17.
*/
public class LiveDetail extends ErrorMessage {
private String cId;
private String cName;
private String imageUrl;
private String playedCount;
private List<LiveDetailSourceItem> videoSource;
public String getcId() {
return cId;
}
public void setcId(String cId) {
this.cId = cId;
}
public String getcName() {
return cName;
}
public void setcName(String cName) {
this.cName = cName;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getPlayedCount() {
return playedCount;
}
public void setPlayedCount(String playedCount) {
this.playedCount = playedCount;
}
public List<LiveDetailSourceItem> getVideoSource() {
return videoSource;
}
public void setVideoSource(List<LiveDetailSourceItem> videoSource) {
this.videoSource = videoSource;
}
@NonNull
@Override
public String toString() {
return "LiveDetail{" +
"cId='" + cId + '\'' +
", cName='" + cName + '\'' +
", imageUrl='" + imageUrl + '\'' +
", playedCount='" + playedCount + '\'' +
", videoSource=" + videoSource +
'}';
}
}