JLChen
2021-11-05 de72a7843ceb868c89fc11983e315849caa28573
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hdl.sdk.ttl.HDLAppliances.HDLAudio.bean;
 
//*SsPREVLIST<CR>
//*SsPREVLIST<CR>
//第三方背景音乐上一列表、下一列表 回复Bean
public class HDLBgmCtrlListBean {
    private int sourceNum;//源号
    private int listNum;//当前列表号
    private int listSum;//列表总数
    private int songNum;//当前歌曲号
    private int songSum;//歌曲总数
    private String songName;//歌曲名,不超过50个字节
    private int songDur;//当前歌曲总时长(秒)
    private int songPos;//当前歌曲已播放时间(秒)
    private int songStatus;//当前歌曲播放状态。值1:停止,值2:播放,值3:暂停
 
 
 
 
}