From 694b9483c7a551626244cbc222c602ea9ff74094 Mon Sep 17 00:00:00 2001
From: sean.zhou <sean.zhou@dji.com>
Date: Tue, 25 Apr 2023 21:44:00 +0800
Subject: [PATCH] What's new? 1. Wayline management: added `pause wayline task` and `recover wayline task`. 2. Added command flight function. 3. Fixed some issues.

---
 src/main/java/com/dji/sample/wayline/model/dto/WaylineJobDTO.java |   31 ++++++++++++++++++++++++++++---
 1 files changed, 28 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/dji/sample/wayline/model/dto/WaylineJobDTO.java b/src/main/java/com/dji/sample/wayline/model/dto/WaylineJobDTO.java
index a8820a7..718923b 100644
--- a/src/main/java/com/dji/sample/wayline/model/dto/WaylineJobDTO.java
+++ b/src/main/java/com/dji/sample/wayline/model/dto/WaylineJobDTO.java
@@ -32,12 +32,37 @@
 
     private String workspaceId;
 
-    private String bid;
+    private Integer waylineType;
 
-    private String type;
+    private Integer taskType;
+
+    private LocalDateTime executeTime;
+
+    private LocalDateTime beginTime;
+
+    private LocalDateTime endTime;
+
+    private LocalDateTime completedTime;
+
+    private Integer status;
+
+    private Integer progress;
 
     private String username;
 
-    private LocalDateTime updateTime;
+    private Integer code;
 
+    private Integer rthAltitude;
+
+    private Integer outOfControlAction;
+
+    private Integer mediaCount;
+
+    private Integer uploadedCount;
+
+    private Boolean uploading;
+
+    private WaylineTaskConditionDTO conditions;
+
+    private String parentId;
 }

--
Gitblit v1.9.3