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
|
}
|