From d723fee177238df0dbab80eb788876ebd154927d Mon Sep 17 00:00:00 2001
From: hxb <hxb@hdlchina.com.cn>
Date: 星期四, 24 十月 2024 11:55:46 +0800
Subject: [PATCH] Update HDLLoginInterceptor.java

---
 HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/bean/IrDeviceBrandBean.java |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/bean/IrDeviceBrandBean.java b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/bean/IrDeviceBrandBean.java
new file mode 100644
index 0000000..70a22ec
--- /dev/null
+++ b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/bean/IrDeviceBrandBean.java
@@ -0,0 +1,46 @@
+package com.hdl.linkpm.sdk.project.bean;
+
+import java.io.Serializable;
+
+import androidx.annotation.NonNull;
+
+/**
+ * Created by Zoro
+ * Created on 2023/3/6
+ * description:
+ */
+public class IrDeviceBrandBean implements Serializable {
+    private String id;
+    private String brandName;
+    private String deviceTypeId;
+
+    public IrDeviceBrandBean(String id, String brandName, String deviceTypeId) {
+        this.id = id;
+        this.brandName = brandName;
+        this.deviceTypeId = deviceTypeId;
+    }
+
+    public String getId() {
+        return id == null ? "" : id;
+    }
+
+    public void setId(@NonNull String id) {
+        this.id = id;
+    }
+
+    public String getBrandName() {
+        return brandName == null ? "" : brandName;
+    }
+
+    public void setBrandName(@NonNull String brandName) {
+        this.brandName = brandName;
+    }
+
+    public String getDeviceTypeId() {
+        return deviceTypeId == null ? "" : deviceTypeId;
+    }
+
+    public void setDeviceTypeId(@NonNull String deviceTypeId) {
+        this.deviceTypeId = deviceTypeId;
+    }
+}
\ No newline at end of file

--
Gitblit v1.8.0