From ddaa44400aa478058ffe9349d59904a130b7ce9c Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 28 八月 2025 17:33:11 +0800
Subject: [PATCH] 2025.8.28 1. 新增走航任务统计功能(待完成)

---
 src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt b/src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt
index 07ab15e..af71e21 100644
--- a/src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt
+++ b/src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt
@@ -10,12 +10,21 @@
 
 interface RealTimeDataService {
 
-    fun getSecondData(deviceCode: String?, startTime: String?, endTime: String?, type: Int?, page: Int?, perPage: Int?): BaseResponse<List<DataVo>>
+    fun getSecondData(
+        deviceType: String?, deviceCode: String?, startTime: String?, endTime: String?, type: Int?,
+        page: Int?, perPage: Int?,
+    ): BaseResponse<List<DataVo>>
 
     fun getNextData(deviceCode: String, updateTime: String, page: Int?, perPage: Int?): BaseResponse<List<DataVo>>
 
+    fun getSegmentData(missionCode: String): List<List<DataVo>>
+
     fun importData(file: MultipartFile): BaseResponse<DataImportResult>
 
+    fun importJinanData(code:String, file: MultipartFile): DataImportResult
+
+    fun downloadTemplate(response: HttpServletResponse): Boolean
+
     fun outToWorkbook(deviceCode: String, startTime: String, endTime: String): SXSSFWorkbook
 
     fun outToExcel(deviceCode: String, startTime: String, endTime: String, response: HttpServletResponse): HttpServletResponse

--
Gitblit v1.9.3