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;
|
}
|
|
}
|