From ce88de4891b87c3b7b2750575e15d6e48d518852 Mon Sep 17 00:00:00 2001
From: hxb <hxb@hdlchina.com.cn>
Date: 星期四, 24 十月 2024 10:39:12 +0800
Subject: [PATCH] 增加云端库

---
 HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/device/bean/ProductInfo.java |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 49 insertions(+), 0 deletions(-)

diff --git a/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/device/bean/ProductInfo.java b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/device/bean/ProductInfo.java
new file mode 100644
index 0000000..5c1fd7c
--- /dev/null
+++ b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/device/bean/ProductInfo.java
@@ -0,0 +1,49 @@
+package com.hdl.linkpm.sdk.device.bean;
+
+import java.io.Serializable;
+
+import androidx.annotation.NonNull;
+
+/**
+ * Created by Zoro
+ * Created on 2022/11/1
+ * description:
+ */
+public class ProductInfo implements Serializable {
+    private String productName;
+    private String productModel;
+    private String imageUrl;
+
+    public String getImageUrl() {
+        return imageUrl == null ? "" : imageUrl;
+    }
+
+    public void setImageUrl(@NonNull String imageUrl) {
+        this.imageUrl = imageUrl;
+    }
+
+    public String getProductName() {
+        return productName == null ? "" : productName;
+    }
+
+    public void setProductName(@NonNull String productName) {
+        this.productName = productName;
+    }
+
+    public String getProductModel() {
+        return productModel == null ? "" : productModel;
+    }
+
+    public void setProductModel(@NonNull String productModel) {
+        this.productModel = productModel;
+    }
+
+    public ProductInfo() {
+    }
+
+    public ProductInfo(String productName, String productModel, String imageUrl) {
+        this.productName = productName;
+        this.productModel = productModel;
+        this.imageUrl = imageUrl;
+    }
+}
\ No newline at end of file

--
Gitblit v1.8.0