From a7aaeabc7873a0eafb4a7ecad7f65b018b7a9bc9 Mon Sep 17 00:00:00 2001
From: sean.zhou <sean.zhou@dji.com>
Date: Fri, 24 Feb 2023 19:31:23 +0800
Subject: [PATCH] What's new? 1. Add license for dock. 2. Modify the logic corresponding to the firmware file and device type. 3. Add multiple mqtt clients options. 4. Modify the structure of the interface for obtaining the device list. 5. Fixed some issues.
---
src/main/java/com/dji/sample/manage/model/dto/DeviceFirmwareDTO.java | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/dji/sample/manage/model/dto/DeviceFirmwareDTO.java b/src/main/java/com/dji/sample/manage/model/dto/DeviceFirmwareDTO.java
index 68b9419..b59f289 100644
--- a/src/main/java/com/dji/sample/manage/model/dto/DeviceFirmwareDTO.java
+++ b/src/main/java/com/dji/sample/manage/model/dto/DeviceFirmwareDTO.java
@@ -6,6 +6,7 @@
import lombok.NoArgsConstructor;
import java.time.LocalDate;
+import java.util.List;
/**
* @author sean
@@ -24,17 +25,21 @@
private String productVersion;
- private String fileUrl;
+ private String objectKey;
private Long fileSize;
private String fileMd5;
- private String deviceName;
+ private List<String> deviceName;
private String releaseNote;
private LocalDate releasedTime;
private Boolean firmwareStatus;
+
+ private String workspaceId;
+
+ private String username;
}
--
Gitblit v1.9.3