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;
|
// }
|
}
|