LiveSubscribeBean.java
1.36 KB
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
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;
}