| | |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | private Integer rthAltitude; |
| | | |
| | | @NotNull |
| | | private Integer rthMode; |
| | | |
| | | @NotNull |
| | | @Range(max = 2) |
| | | private Integer outOfControlAction; |
| | | |
| | |
| | | private List<Long> taskDays; |
| | | |
| | | private List<List<Long>> taskPeriods; |
| | | |
| | | private Integer repFreType; |
| | | |
| | | private Integer repFreVal; |
| | | |
| | | private Integer repRuleType; |
| | | |
| | | private List<Integer> repRuleVal; |
| | | |
| | | private List<List<Long>> executeStartTimeArr; |
| | | |
| | | private String jobId; |
| | | |
| | | private LocalDateTime beginTime; |
| | | } |