wjc
2023-06-28 989b4cf5a84e898e9682f8d9723a8ba1ff20c23b
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
33
34
35
36
37
38
39
40
41
42
package com.hdl.sdk.link.zigbee.bean;
 
 
/**
 * Created by jlchen on 12/16/21.
 */
public class ZBBaseSendBean<T> {
    private int Cluster_ID;//簇 id
    private int Command;//操作码
    private T data;//数据
 
    public ZBBaseSendBean(int cluster_ID, int command, T data) {
        Cluster_ID = cluster_ID;
        Command = command;
        this.data = data;
    }
 
    public int getCluster_ID() {
        return Cluster_ID;
    }
 
    public void setCluster_ID(int cluster_ID) {
        Cluster_ID = cluster_ID;
    }
 
    public int getCommand() {
        return Command;
    }
 
    public void setCommand(int command) {
        Command = command;
    }
 
    public T getData() {
        return data;
    }
 
    public void setData(T data) {
        this.data = data;
    }
 
}