package com.example.agvcontroller.protocol;
|
|
|
import java.io.Serializable;
|
|
/**
|
* 激活包
|
* Created by vincent on 2023/3/16
|
*/
|
public class AGV_80_DOWN implements IMessageBody, Serializable {
|
|
private static final long serialVersionUID = -8289774377582991418L;
|
|
@Override
|
public byte[] writeToBytes() {
|
return new byte[0];
|
}
|
|
@Override
|
public void readFromBytes(byte[] messageBodyBytes) {
|
|
}
|
|
}
|