pk房完成,剩余禁止对方麦未完成
拍卖房完成 点歌房完成,音乐播放需要测试
This commit is contained in:
@@ -1,28 +1,33 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import com.chad.library.adapter.base.entity.MultiItemEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TopRoom {
|
||||
|
||||
private String id;
|
||||
private String user_id;
|
||||
private String room_name;
|
||||
private String label_id;
|
||||
private String cover_picture;
|
||||
private String voice;
|
||||
private String on_line;
|
||||
private String chatrooms;
|
||||
private String popularity;
|
||||
private String room_id;
|
||||
private String user_count;
|
||||
public class TopRoom implements MultiItemEntity {
|
||||
private int itemViewType;
|
||||
private String room_id;//房间id 请求接口是这个
|
||||
private String room_number;//房间号 房间展示是这个
|
||||
private String user_id; //房主id
|
||||
private String room_name; //房间名称
|
||||
private String room_cover;//房间封面
|
||||
private String room_password;//房间密码
|
||||
private String hot_value;//火热值
|
||||
private List<UserList> user_list;
|
||||
|
||||
@Override
|
||||
public int getItemType() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Data
|
||||
public static class UserList {
|
||||
private String head_picture;
|
||||
private String nickname;
|
||||
private String user_id;
|
||||
private String avatar;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user