Program.java
2.53 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
package com.cnlive.goldenline.model;
import android.support.annotation.NonNull;
import java.io.Serializable;
import java.util.List;
/**
* Created by Dean.Zhang on 2016-08-03.
*/
public class Program implements Serializable {
private String contentid;
private String title;
private String uuid;
private String actors;
private String director;
private String tags;
private String jurisdiction;
private String vd;
private List<ProgramItem> getway;
private List<ProgramItem> download;
@NonNull
@Override
public String toString() {
return "Program{" +
"actors='" + actors + '\'' +
", contentid='" + contentid + '\'' +
", title='" + title + '\'' +
", uuid='" + uuid + '\'' +
", director='" + director + '\'' +
", tags='" + tags + '\'' +
", jurisdiction='" + jurisdiction + '\'' +
", vd='" + vd + '\'' +
", getway=" + getway +
", download=" + download +
'}';
}
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getActors() {
return actors;
}
public void setActors(String actors) {
this.actors = actors;
}
public String getContentid() {
return contentid;
}
public void setContentid(String contentid) {
this.contentid = contentid;
}
public String getDirector() {
return director;
}
public void setDirector(String director) {
this.director = director;
}
public List<ProgramItem> getDownload() {
return download;
}
public void setDownload(List<ProgramItem> download) {
this.download = download;
}
public List<ProgramItem> getGetway() {
return getway;
}
public void setGetway(List<ProgramItem> getway) {
this.getway = getway;
}
public String getTags() {
return tags;
}
public void setTags(String tags) {
this.tags = tags;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getJurisdiction() {
return jurisdiction;
}
public void setJurisdiction(String jurisdiction) {
this.jurisdiction = jurisdiction;
}
public String getVd() {
return vd;
}
public void setVd(String vd) {
this.vd = vd;
}
}