hxb
2024-10-24 ce88de4891b87c3b7b2750575e15d6e48d518852
HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/bean/IrDeviceBrandBean.java
New file
@@ -0,0 +1,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;
    }
}