1
zhang
1 天以前 7d116115ade208f26ada36806642d2a3a6085c91
1
2
3
4
5
6
7
8
9
10
11
package com.zy.acs.common.domain.protocol;
 
import java.io.Serializable;
 
public interface IMessageBody extends Serializable {
 
    byte[] writeToBytes();
 
    void readFromBytes(byte[] messageBodyBytes);
 
}