公告板
版本库
filestore
活动
搜索
登录
main
/
AGV_Controller
AGV遥控器
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
#
whycq
2025-02-06
318bd727e2fe02e4f541dfe943f77606af41d509
[AGV_Controller.git]
/
app
/
src
/
main
/
java
/
com
/
example
/
agvcontroller
/
protocol
/
IMessageBody.java
1
2
3
4
5
6
7
8
9
10
11
12
13
package
com
.
example
.
agvcontroller
.
protocol
;
import
java
.
io
.
Serializable
;
public
interface
IMessageBody
extends
Serializable
{
byte
[]
writeToBytes
();
void
readFromBytes
(
byte
[]
messageBodyBytes
);
String
getSerialNo
();
}