hxb
2024-02-23 a6c0ac0f20d1d91fbe1fe591a6a9ca46f82399f5
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
41
42
43
44
45
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;
    }
}