package safeluck.drive.evaluation.bean; /** * 给平台发送开始考试消息 * MyApplication2 * Created by lzw on 2019/12/19. 18:28:47 * 邮箱:632393724@qq.com * All Rights Saved! Chongqing AnYun Tech co. LTD */ public class StartExamMessage extends DriveExamProtocol { private static final int BODY_LENGTH = 0; // TODO: 2019/12/19 /** * 构造函数 * * @param msg_id 消息ID */ public StartExamMessage(short msg_id) { super(msg_id); } @Override protected int msgBodyLength() { return BODY_LENGTH; } @Override protected byte[] createMessageBody() { return new byte[BODY_LENGTH]; } }