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