LiveSubscribeBean.java 1.36 KB
package com.wd.foundation.bean.response;


import com.wd.foundation.bean.base.BaseBean;

/**
 *  预约直播列表子项
 *
 * @author wd
 * @version [V1.0.0]
 * @since V1.0.0
 */
public class LiveSubscribeBean extends BaseBean {
    /**
     * //	string [] 非必须 封面图 item 类型: string 非必须
     * */
    public String[] imageUrl;

    /**
     *  //	number 非必须 直播ID
     * */
    public String liveId;

    /**
     * //	string 非必须 计划开始时间 2023-05-31 10:12:59
     * */
    public String planStartTime;

    /**
     * //	string 非必须 直播状态 wait是预约、runing  直播中、end结束
     * */
    public String status;

    /**
     * //	string 非必须 直播标题
     * */
    public String title;

//    /**
//     * //	string 非必须  App样式 1:小图卡,2:大图卡,3:无图卡,4:三图卡,5:头图卡,6:小视频卡,7:作者卡,8:单图卡
//     * */
//    public String appStyle;
//
//
//    /**
//     * //	string 非必须 直播开始时间
//     * */
//    public String startTime;

    /**
     * 是否曝光过  false: 没有曝光;true: 曝光过
     */
    public boolean exposure = false;
    /**
     *  fixme 待重新提供接口
     * */
    public boolean isSubscribe;

    /**
     * 关系ID
     */
    public String relId;
    /**
     * 关联关系type
     */
    public int relType;


}