ISignBean.java
821 Bytes
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
package com.cnlive.goldenline.model;
import com.cnlive.goldenline.model.response.bean.LiveShowBean;
import com.cnlive.goldenline.model.response.bean.VideoDemandBean;
/**
* Created by Lynn on 4/8/2017.
*/
public class ISignBean extends ISign {
private LiveShowBean liveInfo;
private VideoDemandBean video;
public LiveShowBean getLiveInfo() {
return liveInfo;
}
public void setLiveInfo(LiveShowBean liveInfo) {
this.liveInfo = liveInfo;
}
public VideoDemandBean getVideo() {
return video;
}
public void setVideo(VideoDemandBean video) {
this.video = video;
}
@Override
public String toString() {
return "ISignBean{" +
"liveInfo=" + liveInfo +
", video=" + video +
'}';
}
}