package com.yanzuoguang.wxxcx.liveBroadcast.vo; import java.util.List; /*** * 直播数据 * * @author:heyanou */ public class RoomInfo { /*** * <p> * 描述:直播间名称 * </p> */ private String name; /*** * <p> * 描述:直播间背景图链接 * </p> */ private String cover_img; /*** * <p> * 描述:直播间开始时间,列表按照start_time降序排列 * </p> */ private Long start_time; /*** * <p> * 描述:直播计划结束时间 * </p> */ private Long end_time; /*** * <p> * 描述:主播名 * </p> */ private String anchor_name; /*** * <p> * 描述:直播间ID * </p> */ private Long roomid; /*** * <p> * 描述:商品 * </p> */ private List<LiveBroadcastGoods> goods; /*** * <p> * 描述:直播间状态。101:直播中,102:未开始,103已结束,104禁播,105:暂停,106:异常,107:已过期 * </p> */ private Integer live_status; /*** * <p> * 描述:直播间分享图链接 * </p> */ private String share_img; /*** * <p> * 描述:直播类型,1 推流 0 手机直播 * </p> */ private Integer live_type; /*** * <p> * 描述:是否关闭点赞 【0:开启,1:关闭】(若关闭,观众端将隐藏点赞按钮,直播开始后不允许开启) * </p> */ private Integer close_like; /*** * <p> * 描述:是否关闭货架 【0:开启,1:关闭】(若关闭,观众端将隐藏商品货架,直播开始后不允许开启) * </p> */ private Integer close_goods; /*** * <p> * 描述:是否关闭评论 【0:开启,1:关闭】(若关闭,观众端将隐藏评论入口,直播开始后不允许开启) * </p> */ private Integer close_comment; /*** * <p> * 描述:是否关闭客服 【0:开启,1:关闭】 默认关闭客服(直播开始后允许开启) * </p> */ private Integer close_kf; /*** * <p> * 描述:是否关闭回放 【0:开启,1:关闭】默认关闭回放(直播开始后允许开启) * </p> */ private Integer close_replay; /*** * <p> * 描述:是否开启官方收录,1 开启,0 关闭 * </p> */ private Integer is_feeds_public; /*** * <p> * 描述:创建者openid * </p> */ private String creater_openid; /*** * <p> * 描述:官方收录封面 * </p> */ private String feeds_img; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCover_img() { return cover_img; } public void setCover_img(String cover_img) { this.cover_img = cover_img; } public Long getStart_time() { return start_time; } public void setStart_time(Long start_time) { this.start_time = start_time; } public Long getEnd_time() { return end_time; } public void setEnd_time(Long end_time) { this.end_time = end_time; } public String getAnchor_name() { return anchor_name; } public void setAnchor_name(String anchor_name) { this.anchor_name = anchor_name; } public Long getRoomid() { return roomid; } public void setRoomid(Long roomid) { this.roomid = roomid; } public List<LiveBroadcastGoods> getGoods() { return goods; } public void setGoods(List<LiveBroadcastGoods> goods) { this.goods = goods; } public Integer getLive_status() { return live_status; } public void setLive_status(Integer live_status) { this.live_status = live_status; } public String getShare_img() { return share_img; } public void setShare_img(String share_img) { this.share_img = share_img; } public Integer getLive_type() { return live_type; } public void setLive_type(Integer live_type) { this.live_type = live_type; } public Integer getClose_like() { return close_like; } public void setClose_like(Integer close_like) { this.close_like = close_like; } public Integer getClose_goods() { return close_goods; } public void setClose_goods(Integer close_goods) { this.close_goods = close_goods; } public Integer getClose_comment() { return close_comment; } public void setClose_comment(Integer close_comment) { this.close_comment = close_comment; } public Integer getClose_kf() { return close_kf; } public void setClose_kf(Integer close_kf) { this.close_kf = close_kf; } public Integer getClose_replay() { return close_replay; } public void setClose_replay(Integer close_replay) { this.close_replay = close_replay; } public Integer getIs_feeds_public() { return is_feeds_public; } public void setIs_feeds_public(Integer is_feeds_public) { this.is_feeds_public = is_feeds_public; } public String getCreater_openid() { return creater_openid; } public void setCreater_openid(String creater_openid) { this.creater_openid = creater_openid; } public String getFeeds_img() { return feeds_img; } public void setFeeds_img(String feeds_img) { this.feeds_img = feeds_img; } }