PlayItemInfo.java
2.08 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
package com.cnlive.goldenline.model;
import android.support.annotation.NonNull;
import java.io.Serializable;
/**
* Created by Administrator on 2016/4/28.
*/
public class PlayItemInfo implements Serializable {
/**
* tags : 全片 内地 演唱会
* title : 失去之后才想起珍惜
* contentid : 04270015
* actors :
* uuid : 05e95e35fb994145982b41d6a99d8e64
* director :
*/
private String tags;
private String title;
private String contentid;
private String actors;
private String uuid;
private String director;
private String commentNum;
private String uv;//观看人数
public String getCommentNum() {
return commentNum;
}
public void setCommentNum(String commentNum) {
this.commentNum = commentNum;
}
public String getUv() {
return uv;
}
public void setUv(String uv) {
this.uv = uv;
}
public void setTags(String tags) {
this.tags = tags;
}
public void setTitle(String title) {
this.title = title;
}
public void setContentid(String contentid) {
this.contentid = contentid;
}
public void setActors(String actors) {
this.actors = actors;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public void setDirector(String director) {
this.director = director;
}
public String getTags() {
return tags;
}
public String getTitle() {
return title;
}
public String getContentid() {
return contentid;
}
public String getActors() {
return actors;
}
public String getUuid() {
return uuid;
}
public String getDirector() {
return director;
}
@NonNull
@Override
public String toString() {
return "PlayItemInfo{"+
" tags:"+tags+
" title:"+title+
" contentid:"+contentid+
" actors:"+actors+
" uuid:"+uuid+
" director:"+director+
"}";
}
}