feiyu02
2024-02-02 83455446544f89b0663a3f520744331ad8259289
src/main/kotlin/com/flightfeather/uav/lightshare/service/RealTimeDataService.kt
@@ -16,9 +16,15 @@
    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>>
    /**
     * 数据处理
@@ -30,4 +36,9 @@
     * 均值计算,将秒级值换算为分钟均值
     */
    fun averageData(): BaseResponse<String>
    /**
     * 数据优化,在数据预处理基础上做进一步数据优化
     */
    fun dataCalibration(): BaseResponse<String>
}