Riku
2025-06-02 e731486b50c4ea6e2d28f302df449b4bd0b2be57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.flightfeather.uav.socket.sender
 
import com.flightfeather.uav.biz.sourcetrace.model.PollutedClue
import com.flightfeather.uav.biz.sourcetrace.model.PollutedSummary
 
enum class MsgType(val value: Int) {
    /**
     * 污染线索
     * @see [PollutedClue]
     */
    PolClue(1),
 
    /**
     * 污染分析结果
     * @see [PollutedSummary.AnalysisResult]
     */
    AnaResult(2),
}