package com.example.agvcontroller.protocol; /** * 命令参数 */ public interface ICommandBody { byte[] writeToBytes(); void readFromBytes(byte[] messageBodyBytes); }