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) {
|
|
}
|
|
}
|