admin
2021-07-15 49982f5a1a305c0cc7da04735e1c604b802d2a22
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
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;
    }
 
 
}