RecommendBean.java
2.04 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
package com.cnlive.goldenline.ui.model;
/**
* Description:
* Created on 2017/3/1
* Author : 萧
*/
public class RecommendBean {
private String url;
/**
* 1 相声 2 音乐剧 3 评书
*/
private int videoType;
private String title;
private String des;
private int online;
private int judegNum;
private String time;
public RecommendBean() {
}
public RecommendBean(String url, int videoType, String title, String des, int online, int judegNum, String time) {
this.url = url;
this.videoType = videoType;
this.title = title;
this.des = des;
this.online = online;
this.judegNum = judegNum;
this.time = time;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public int getVideoType() {
return videoType;
}
public void setVideoType(int videoType) {
this.videoType = videoType;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDes() {
return des;
}
public void setDes(String des) {
this.des = des;
}
public int getOnline() {
return online;
}
public void setOnline(int online) {
this.online = online;
}
public int getJudegNum() {
return judegNum;
}
public void setJudegNum(int judegNum) {
this.judegNum = judegNum;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
@Override
public String toString() {
return "RecommendBean{" +
"url='" + url + '\'' +
", videoType=" + videoType +
", title='" + title + '\'' +
", des='" + des + '\'' +
", online=" + online +
", judegNum=" + judegNum +
", time='" + time + '\'' +
'}';
}
}