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.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 [AnalysisResult]
| */
| AnaResult(2),
|
| // 数据变化提醒(非异常)
| DataChange(3),
| }
|
|