aix
2024-08-08 39ffdf5754b4ebca682bd3c925f7a500e8a1bbda
src/main/java/com/dji/sample/wayline/model/param/CreateJobParam.java
@@ -7,6 +7,7 @@
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.time.LocalDateTime;
import java.util.List;
/**
@@ -37,6 +38,9 @@
    private Integer rthAltitude;
    @NotNull
    private Integer rthMode;
    @NotNull
    @Range(max = 2)
    private Integer outOfControlAction;
@@ -48,4 +52,18 @@
    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;
}