feiyu02
2025-07-23 344d9006faa27ea65e3eaf5e8f9173aad2266038
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.flightfeather.uav.lightshare.service
 
import com.flightfeather.uav.biz.dataanalysis.BaseExceptionResult
import com.flightfeather.uav.biz.dataanalysis.model.ExceptionResult
import com.flightfeather.uav.biz.sourcetrace.model.BasePollutedMsg
 
/**
 *
 * @date 2025/5/8
 * @author feiyu02
 */
interface DataAnalysisService {
 
    /**
     * 污染溯源分析
     * @param missionCode 走航任务编号
     */
    fun pollutionTrace(missionCode: String): List<ExceptionResult>
 
    fun fetchHistory(missionCode: String): String
}