feiyu02
2025-07-10 c5f380b69707a9a09fe988a2f4bd98e142bf64ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.flightfeather.uav.biz.sourcetrace.model
 
import com.flightfeather.uav.biz.dataanalysis.BaseExceptionResult
import com.flightfeather.uav.common.net.AMapService
import com.flightfeather.uav.domain.entity.SceneInfo
import com.flightfeather.uav.socket.sender.MsgType
import java.util.*
 
/**
 * 分析结果
 * @date 2025/7/4
 * @author feiyu02
 */
class AnalysisResult : BaseExceptionResult() {
    /**
     * @see [MsgType]
     */
    var msgType: Int? = null
 
    var deviceCode: String? = null
 
    // 按照被扫描次数降序排列的污染源列表
    var sortedSceneList: List<Pair<SceneInfo?, Int>>? = null
    var time: Date? = null
    var advice: String? = null
    var direction: AMapService.AMapDirection? = null
}