feiyu02
2025-07-04 9c797fa0d704ef8ffb65cd1716b8eb694b4c46c3
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
 
class WebSocketMessage {
 
    /**
     * 消息类型
     */
    var type: Int = 0
 
    /**
     * 消息内容
     */
    var content: Any? = null
 
    constructor()
 
    constructor(type: Int, content: Any?) {
        this.type = type
        this.content = content
    }
}