111
zc
8 天以前 11d4e7383093190ee85d59d198f0e3b5ba428c91
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);
 
}