From 2db1aa88e8ab53096a936163d686b90d8e056a99 Mon Sep 17 00:00:00 2001
From: rain <167982779@qq.com>
Date: Wed, 21 Aug 2024 23:18:33 +0800
Subject: [PATCH] 国土对接返回信息加密

---
 src/main/java/com/dji/sample/manage/service/IDeviceService.java |   16 ++++++++++++++--
 1 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/dji/sample/manage/service/IDeviceService.java b/src/main/java/com/dji/sample/manage/service/IDeviceService.java
index 7cf1a17..6789f6f 100644
--- a/src/main/java/com/dji/sample/manage/service/IDeviceService.java
+++ b/src/main/java/com/dji/sample/manage/service/IDeviceService.java
@@ -69,6 +69,7 @@
 
     /**
      * Obtain device data according to different query conditions.
+     * 根据不同的查询条件获取设备数据。
      * @param param query parameters
      * @return
      */
@@ -86,7 +87,7 @@
      * @param workspaceId
      * @return
      */
-    List<DeviceDTO> getDevicesTopoForWeb(String workspaceId);
+    List<DeviceDTO> getDevicesTopoForWeb(String workspaceId,String reserveId);
 
     /**
      * Set the remote controller and payloads information of the drone.
@@ -171,6 +172,7 @@
 
     /**
      * Get device information based on device's sn.
+     * 根据设备码获取设备信息
      * @param sn device's sn
      * @return device
      */
@@ -194,6 +196,15 @@
     void devicePropertySet(String workspaceId, String dockSn, DeviceSetPropertyEnum propertyEnum, JsonNode param);
 
     /**
+     * Set the property parameters of the drone.
+     * @param workspaceId
+     * @param dockSn
+     * @param param
+     * @return
+     */
+    int devicePropertySet(String workspaceId, String dockSn, JsonNode param);
+
+    /**
      * Set one property parameters of the drone.
      * @param topic
      * @param propertyEnum
@@ -210,6 +221,7 @@
 
     /**
      * Query the working status of the aircraft.
+     * 查询飞行器的工作状态
      * @param deviceSn
      * @return
      */
@@ -229,4 +241,4 @@
      */
     Boolean checkAuthorityFlight(String gatewaySn);
 
-}
\ No newline at end of file
+}

--
Gitblit v1.9.3