wjc
2023-07-07 22494af577e21a930abef309f2f60c03c9615bd1
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
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;
    }
}