New file |
| | |
| | | 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 IrDeviceCodeBean implements Serializable { |
| | | private String irCode; |
| | | private String brandId; |
| | | private String irIndex; |
| | | |
| | | public IrDeviceCodeBean(String irCode, String brandId, String irIndex) { |
| | | this.irCode = irCode; |
| | | this.brandId = brandId; |
| | | this.irIndex = irIndex; |
| | | } |
| | | |
| | | public String getIrCode() { |
| | | return irCode == null ? "" : irCode; |
| | | } |
| | | |
| | | public void setIrCode(@NonNull String irCode) { |
| | | this.irCode = irCode; |
| | | } |
| | | |
| | | public String getBrandId() { |
| | | return brandId == null ? "" : brandId; |
| | | } |
| | | |
| | | public void setBrandId(@NonNull String brandId) { |
| | | this.brandId = brandId; |
| | | } |
| | | |
| | | public String getIrIndex() { |
| | | return irIndex == null ? "" : irIndex; |
| | | } |
| | | |
| | | public void setIrIndex(@NonNull String irIndex) { |
| | | this.irIndex = irIndex; |
| | | } |
| | | } |