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