package com.cmos.msgframe.common.message;

/**
 * 字节类型
 * 
 * @author yangping5
 * @version [版本号, 2016年5月4日]
 * @see [相关类/方法]
 * @since [产品/模块版本]
 */
public class MsgFByteMessage extends MsgFMessage
{

    private byte[] bytearray;

    /**
     * <默认构造函数>
     * 
     * @param bytearray
     *            字节
     */
    public MsgFByteMessage(byte[] bytearray)
    {
        super();
        this.bytearray = bytearray;
    }

    /**
     * <默认构造函数>
     */
    public MsgFByteMessage()
    {
        super();
    }

    public byte[] getBytearray()
    {
        return bytearray;
    }

    public void setBytearray(byte[] bytearray)
    {
        this.bytearray = bytearray;
    }

}
