mac
2023-12-27 5df76d441a853b1a5d2dff018c01327eb3a717b3
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
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 IrDeviceTypeBean implements Serializable {
    private String id;
    private String deviceType;
 
    public IrDeviceTypeBean(String id, String deviceType) {
        this.id = id;
        this.deviceType = deviceType;
    }
 
    public String getId() {
        return id == null ? "" : id;
    }
 
    public void setId(@NonNull String id) {
        this.id = id;
    }
 
    public String getDeviceType() {
        return deviceType == null ? "" : deviceType;
    }
 
    public void setDeviceType(@NonNull String deviceType) {
        this.deviceType = deviceType;
    }
}