lizhanwei
2020-02-13 2f5311a7f088f7da4742de3036d33c9abd99c23f
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];
    }
}