#
whycq
2024-08-15 e54492fb532366faac8aa5d46ad8905ea3ff38d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.example.agvcontroller.protocol;
 
import java.io.Serializable;
 
/**
 * 心跳
 * Created by vincent on 2023/3/16
 */
public class AGV_03_DOWN implements IMessageBody, Serializable {
 
    private static final long serialVersionUID = 6922520599887812372L;
 
    @Override
    public byte[] writeToBytes() {
        return new byte[0];
    }
 
    @Override
    public void readFromBytes(byte[] messageBodyBytes) {
 
    }
 
}