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