1
zhang
3 天以前 5d8216a8d79aeb7b22a86478580018a3d9628406
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);
 
}