初始化代码
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
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;
|
||||
private List<UserList> user_list;
|
||||
|
||||
@Data
|
||||
public static class UserList {
|
||||
private String head_picture;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user