2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-24 7a00187d197548e23a38dcb87187ef6b2b7f8bfb
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.sandu.ximon.admin.param;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
 
/**
 * @author LiuHaoNan
 * @date 2022/9/6
 */
@NoArgsConstructor
@Data
public class AsyncStatusParam {
 
 
    private String playerId;
 
    private String command;
 
    private String logid;
 
    private DataDTO data;
 
    @NoArgsConstructor
    @Data
    public static class DataDTO {
 
        private String orderId;
 
        /**
         *     同步播放状态,true-已开启同步,false-未开启同步
         */
        private Boolean enable;
 
        private String ratio;
 
        /**
         * 时间
         */
        private String currentTime;
 
        /**
         * 时区
         */
        private String timeZone;
 
        /**
         *     0-内源,1-外源
         */
        private Integer videoSource;
 
        /**
         * 屏幕状态,CLOSE-黑屏,OPEN-开屏
         */
        private String state;
 
 
    }
}