admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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
package com.newvideo.zhibo.entity;
 
import com.google.gson.annotations.Expose;
 
public class Live {
    @Expose
    private String name;
    private String title;
    @Expose
    private String headPic;
    @Expose
    private String roomPic;
    @Expose
    private String h5Url;
    private String url;
    @Expose
    private int liveNum;
    @Expose
    private int state;  //0 : 直播中  1:离线
    
    
    public int getLiveNum() {
        return liveNum;
    }
    public void setLiveNum(int liveNum) {
        this.liveNum = liveNum;
    }
    public int getState() {
        return state;
    }
    public void setState(int state) {
        this.state = state;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getHeadPic() {
        return headPic;
    }
    public void setHeadPic(String headPic) {
        this.headPic = headPic;
    }
    public String getRoomPic() {
        return roomPic;
    }
    public void setRoomPic(String roomPic) {
        this.roomPic = roomPic;
    }
    public String getH5Url() {
        return h5Url;
    }
    public void setH5Url(String h5Url) {
        this.h5Url = h5Url;
    }
    public String getUrl() {
        return url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    
}