app/src/main/java/safeluck/drive/evaluation/bean/GainStuMessage.java
@@ -8,19 +8,21 @@ * All Rights Saved! Chongqing AnYun Tech co. LTD */ public class GainStuMessage extends DriveExamProtocol { // TODO: 2019/12/19 /** * 构造函数 * * @param msg_id 消息ID */ private static final int BODY_LENGTH = 0; public GainStuMessage(short msg_id) { super(msg_id); } @Override protected int msgBodyLength() { return BODY_LENGTH; } @Override protected byte[] createMessageBody() { return new byte[0]; return new byte[BODY_LENGTH]; } }