2021与蓝度共同重构项目,服务端
zhanzhiqin
2022-10-19 2b9c6e86f1fb2abd7ad7f1a8d74d3fcd515da858
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.sandu.ximon.admin.param;
 
import com.sandu.ximon.dao.domain.LedPlayerEntity;
import lombok.Data;
 
import java.util.List;
 
@Data
public class VnnoxParam {
 
    //  playerID
    private Integer id;
    //  player实体List
    private List<LedPlayerEntity> playerList;
    //  playerIds
    private List<String> playerIds;
    //  屏幕状态 0:关闭   1:开启
    private Integer screenStatus;
    //  屏幕音量
    private Integer vol;
    //  屏幕亮度
    private Integer brightness;
    //  文件ID
    private Integer fileId;
    //  灯杆ID
    private Long streetlightId;
 
    private String playerName;
 
    private String content;
 
    //  节目部分
    private Integer pid;
 
}