package com.sandu.ximon.admin.vo;
|
|
import com.sandu.ximon.admin.config.VnnoxConstant;
|
import com.sandu.ximon.admin.utils.RedisUtils;
|
import lombok.Data;
|
|
/**
|
* @author LiuHaoNan
|
* @date 2022/9/16
|
*/
|
@Data
|
public class NovaAStateInfoVO {
|
|
private String playerId;
|
|
/**
|
* 当前音量
|
*/
|
private String volumeValue;
|
/**
|
* 当前亮度
|
*/
|
private String brightnessValue;
|
//当前视频源
|
private String videoSourceValue;
|
/**
|
* 当前和时区
|
*/
|
private String timezoneValue;
|
/**
|
* 当前时间
|
*/
|
private String timeValue;
|
/**
|
* 当前屏幕状态
|
*/
|
private String screenPowerStatus;
|
/**
|
* 当前同步播放状态
|
*/
|
private String syncPlayStatus;
|
}
|