feiyu02
2025-08-22 b315032d126a640758d4a6fccf297acbab057772
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
    }
}