Files
yusheng-android/moduleUtil/src/main/java/com/qxcm/moduleutil/bean/SongMusicBean.java
梁小江 2d510ffe2a pk房完成,剩余禁止对方麦未完成
拍卖房完成
点歌房完成,音乐播放需要测试
2025-07-04 16:38:21 +08:00

22 lines
777 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.qxcm.moduleutil.bean;
import lombok.Data;
/**
*@author qx
*@data 2025/6/20
*@description: 歌曲实体类
*/
@Data
public class SongMusicBean {
private String room_song_id; // 歌曲列表ID
private String times; // 场次
private String times_status; // 本场次状态1-进行中2-结束
private String room_id; // 房间ID
private String user_id; // 用户ID
private String song_name; // 歌曲名
private String song_id; // 歌曲唯一标识
private String song_url; // 歌曲资源地址
private String status; // 状态1-排队中2-演唱中3-演唱结束
private String sort; // 阈值 越大越靠前
}