2021与蓝度共同重构项目,服务端
Van333
2022-11-14 f8c33ad3fb09dd0f70b68b74d59ce28761142bf0
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
60
61
62
63
64
65
66
67
68
package com.sandu.ximon.admin.newnova.vo;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.util.List;
 
/**
 * @author LiuHaoNan
 * @date 2022/11/10
 */
@NoArgsConstructor
@Data
@AllArgsConstructor
public class ProGenrateVO {
 
 
 
    private Integer programID;
 
    private String outPutPath;
 
//    private List<MediasPathDTO> mediasPath;
//
//    private ComplexProgramDTO complexProgram;
//
//    @NoArgsConstructor
//    @Data
//    public static class ComplexProgramDTO {
//
//        private String name;
//
//        private List<ProgramRegularDTO> programRegular;
//
//        @NoArgsConstructor
//        @Data
//        public static class ProgramRegularDTO {
//
//            private Integer priority;
//
//            private Integer programID;
//
//            private List<ConstraintsDTO> constraints;
//
//            @NoArgsConstructor
//            @Data
//            public static class ConstraintsDTO {
//
//                private String startTime;
//
//                private String endTime;
//
//                private List<String> cron;
//            }
//        }
//    }
//
//    @NoArgsConstructor
//    @Data
//    public static class MediasPathDTO {
//
//        private String oldPath;
//
//        private String newPath;
//    }
}