From eb3dd00b0b7fcda477229d518d250f9c842b790b Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期二, 21 十月 2025 17:45:44 +0800
Subject: [PATCH] 2025.10.21 1. 走航季度报告相关数据计算逻辑调整
---
src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt | 11 +++++++++--
1 files changed, 9 insertions(+), 2 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 a9627b1..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,13 +10,20 @@
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(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
--
Gitblit v1.9.3