package com.mugua.mgvideo.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 直播频道具体信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class LiveVideoInfo {
|
// @Expose
|
// private String roomTotal;// 总房间数
|
@Expose
|
private String roomId;// 房间ID
|
@Expose
|
private String userId; // 房主编号
|
@Expose
|
private String nickname; // 房主昵称
|
@Expose
|
private String onlineCount; // 在线人数
|
@Expose
|
private String max; // 房间最大人数上限
|
@Expose
|
private String livestarttime; // 房间开始直播时间
|
@Expose
|
private String actorLevel; // 房主明星等级
|
@Expose
|
private String richLevel; // 房主财富等级
|
@Expose
|
private String isRookie; // 房主是否是新人
|
@Expose
|
private String poster_path_272; // 房间海报272尺寸
|
private String poster_path_128; // 房间海报272尺寸
|
private String poster_path_1280; // 房间海报272尺寸
|
|
private String iconUrl;// 广告LOGO
|
private String imgUrl;// 广告海报
|
private String title;// 广告标题
|
private String desc;// 广告描述
|
private String appScore;// 广告评分
|
|
public String getIconUrl() {
|
return iconUrl;
|
}
|
|
public void setIconUrl(String iconUrl) {
|
this.iconUrl = iconUrl;
|
}
|
|
public String getImgUrl() {
|
return imgUrl;
|
}
|
|
public void setImgUrl(String imgUrl) {
|
this.imgUrl = imgUrl;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public String getAppScore() {
|
return appScore;
|
}
|
|
public void setAppScore(String appScore) {
|
this.appScore = appScore;
|
}
|
|
public String getRoomId() {
|
return roomId;
|
}
|
|
public void setRoomId(String roomId) {
|
this.roomId = roomId;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getNickname() {
|
return nickname;
|
}
|
|
public void setNickname(String nickname) {
|
this.nickname = nickname;
|
}
|
|
public String getOnlineCount() {
|
return onlineCount;
|
}
|
|
public void setOnlineCount(String onlineCount) {
|
this.onlineCount = onlineCount;
|
}
|
|
public String getMax() {
|
return max;
|
}
|
|
public void setMax(String max) {
|
this.max = max;
|
}
|
|
public String getLivestarttime() {
|
return livestarttime;
|
}
|
|
public void setLivestarttime(String livestarttime) {
|
this.livestarttime = livestarttime;
|
}
|
|
public String getActorLevel() {
|
return actorLevel;
|
}
|
|
public void setActorLevel(String actorLevel) {
|
this.actorLevel = actorLevel;
|
}
|
|
public String getRichLevel() {
|
return richLevel;
|
}
|
|
public void setRichLevel(String richLevel) {
|
this.richLevel = richLevel;
|
}
|
|
public String getIsRookie() {
|
return isRookie;
|
}
|
|
public void setIsRookie(String isRookie) {
|
this.isRookie = isRookie;
|
}
|
|
public String getPoster_path_272() {
|
return poster_path_272;
|
}
|
|
public void setPoster_path_272(String poster_path_272) {
|
this.poster_path_272 = poster_path_272;
|
}
|
|
public String getPoster_path_128() {
|
return poster_path_128;
|
}
|
|
public void setPoster_path_128(String poster_path_128) {
|
this.poster_path_128 = poster_path_128;
|
}
|
|
public String getPoster_path_1280() {
|
return poster_path_1280;
|
}
|
|
public void setPoster_path_1280(String poster_path_1280) {
|
this.poster_path_1280 = poster_path_1280;
|
}
|
|
|
}
|