jiangping
2025-02-06 0bb514f42de29164d6ec5f54806d98a881ae0c7f
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
29
30
31
32
package org.yzh.protocol.t808;
 
import io.github.yezhihao.protostar.annotation.Field;
import io.github.yezhihao.protostar.annotation.Message;
import org.yzh.protocol.basics.JTMessage;
import org.yzh.protocol.commons.JT808;
 
/**
 * @author yezhihao
 * https://gitee.com/yezhihao/jt808-server
 */
@Message(JT808.查询指定终端参数)
public class T8106 extends JTMessage {
 
    @Field(totalUnit = 1, desc = "参数ID列表")
    private int[] id;
 
    public T8106() {
    }
 
    public T8106(int... id) {
        this.id = id;
    }
 
    public int[] getId() {
        return id;
    }
 
    public void setId(int[] id) {
        this.id = id;
    }
}