package com.sandu.ximon.admin.utils.request;
|
|
/**
|
* @program: machine-fast
|
* @description: 设置播放列表请求body
|
* @author: YSS
|
* @create: 2019-04-24 17:24
|
**/
|
public class SetPlayList {
|
|
public final String type = "setPlayList";
|
|
public String[] list = new String[1] ;
|
|
public String[] pathList = new String[1];
|
|
public Integer width = 128;
|
|
public Integer height = 128;
|
|
public Integer top = 0;
|
|
public Integer left = 0;
|
}
|