From 99bc815e07e39354f51421b77f4012ffd35594d8 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 28 六月 2023 18:03:00 +0800
Subject: [PATCH] 2023年06月28日18:02:58

---
 HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/zigbee/bean/ZBBaseSendBean.java |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/zigbee/bean/ZBBaseSendBean.java b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/zigbee/bean/ZBBaseSendBean.java
new file mode 100644
index 0000000..814b610
--- /dev/null
+++ b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/zigbee/bean/ZBBaseSendBean.java
@@ -0,0 +1,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;
+    }
+
+}

--
Gitblit v1.8.0