From d3b43d50df28c4fe27c104dcd146d35b2bad4d20 Mon Sep 17 00:00:00 2001 From: Riku <risaku@163.com> Date: 星期三, 11 六月 2025 22:48:01 +0800 Subject: [PATCH] 1. 新增动态污染溯源新的判定逻辑(待完成) --- src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt | 13 ++++++++++++- 1 files changed, 12 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 3da6d86..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,16 +10,27 @@ 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 + fun getOriginData(deviceCode: String?, startTime: String?, endTime: String?, page: Int?, perPage: Int?): BaseResponse<List<DataVo>> + /** * 鏁版嵁澶勭悊 * 鍘婚櫎鍘熷鏁版嵁涓殑寮傚父娉㈠姩鍊� -- Gitblit v1.9.3