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
| package safeluck.drive.evaluation.platformMessage;
|
| import com.safeluck.aykj.annotation.*;
|
| public class JKMessage8100 extends JK2019MessageBase {
|
|
| public static int SUCCESS=0;
| public static int FAIL=1;
|
|
| @Order(1)
| @Int16
| public int resp_no;
| @Order(2)
| @Int8
| public int result;
|
|
| //只有在成功时 result ==0 才返回以下内容 TODO Length8 这个字节有可能不存在
| @Order(3)
| @Length(8)
| @Hex
| public String des;
|
| }
|
|