2021与蓝度共同重构项目,服务端
liuhaonan
2022-11-21 b9ba1dc1b9e156a52dc978bda76347522bd5bc33
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
package com.sandu.ximon.admin.newnova.vo;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.util.List;
 
/**
 * @author LiuHaoNan
 * @date 2022/11/21
 */
@NoArgsConstructor
@Data
public class PlayerInfoVO {
 
 
 
    private SourceDTO source;
 
    private List<TaskArrayDTO> taskArray;
 
    @NoArgsConstructor
    @Data
    public static class SourceDTO {
 
        private Integer type;
 
        private Integer platform;
    }
 
    @NoArgsConstructor
    @Data
    public static class TaskArrayDTO {
 
        private String type;
 
        private Integer action;
 
        private Integer status;
 
        private DataDTO data;
 
        @NoArgsConstructor
        @Data
        public static class DataDTO {
 
            private Integer width;
 
            private Integer height;
 
            private Integer rotation;
        }
    }
}