package com.zy.acs.common.domain.protocol.command;
|
|
import com.zy.acs.common.domain.protocol.IActionBody;
|
import com.zy.acs.common.domain.protocol.ICommandBody;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by vincent on 2023/3/24
|
*/
|
public class BaseAgvCommand implements ICommandBody, Serializable {
|
|
private static final long serialVersionUID = -6849847882777367471L;
|
|
@Override
|
public byte[] writeToBytes() {
|
return new byte[0];
|
}
|
|
@Override
|
public void readFromBytes(byte[] messageBodyBytes) {
|
|
}
|
|
}
|