PlayViewRecommendEntity.java
1.58 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
package com.cnlive.goldenline.model;
import java.io.Serializable;
/**
* Created by Administrator on 2016/4/28.
*/
public class PlayViewRecommendEntity implements Serializable {
/**
* title : 皇马总分4-0罗马进8强
* desc :
* contid : 536613
* uv : 22000
* img : http://yweb0.cnliveimg.com/cnlive/public/151219172158127_463.jpg
* subtitle : 皇马总分4-0罗马进8强
*/
private String title;
private String subtitle;
private String contid;
private String img;
private String corner;
private String extend1;
private String hyperlink;
public String getHyperlink() {
return hyperlink;
}
public void setHyperlink(String hyperlink) {
this.hyperlink = hyperlink;
}
public String getCorner() {
return corner;
}
public void setCorner(String corner) {
this.corner = corner;
}
public String getExtend1() {
return extend1;
}
public void setExtend1(String extend1) {
this.extend1 = extend1;
}
public void setTitle(String title) {
this.title = title;
}
public void setContid(String contid) {
this.contid = contid;
}
public void setImg(String img) {
this.img = img;
}
public void setSubtitle(String subtitle) {
this.subtitle = subtitle;
}
public String getTitle() {
return title;
}
public String getContid() {
return contid;
}
public String getImg() {
return img;
}
public String getSubtitle() {
return subtitle;
}
}