package protocol // 消息实体 type Entity interface { MsgID() MsgID Encode() ([]byte, error) Decode([]byte) (int, error) }