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