From 73a49ddd0516e5c9a4b697c593d62c74e420403b Mon Sep 17 00:00:00 2001
From: mac <user@users-MacBook-Pro.local>
Date: 星期四, 24 十月 2024 12:27:31 +0800
Subject: [PATCH] 2024年10月24日12:27:28

---
 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