fctom1215
2020-02-14 806ed6836b84fbea87d19a0cb4414e120dd9c049
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package safeluck.drive.evaluation.bean;
 
/**
 * 获取学员信息消息(发送身份证ID上去给平台)
 * MyApplication2
 * Created by lzw on 2019/12/19. 18:26:35
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public class GainStuMessage extends DriveExamProtocol {
 
    private static final int BODY_LENGTH = 0;
 
    public GainStuMessage(short msg_id) {
        super(msg_id);
    }
 
    @Override
    protected short msgBodyLength() {
        return BODY_LENGTH;
    }
 
    @Override
    protected byte[] createMessageBody() {
 
        return new byte[BODY_LENGTH];
    }
}