package com.hdl.linkpm.sdk.project.bean;
|
|
import java.io.Serializable;
|
|
import androidx.annotation.NonNull;
|
|
/**
|
* Created by Zoro
|
* Created on 2024/8/15
|
* description:
|
*/
|
public class DebugConfigBean implements Serializable {
|
/**
|
* 类型
|
* SPACE:空间
|
* DEVICE_ADD:设备添加
|
* DEVICE_CONFIG:设备配置
|
* SCENE_CONFIG:场景配置
|
* TEST:现场测试
|
*/
|
private String type;
|
/**
|
* WAIT_CONFIG:待配置
|
* IN_CONFIG:配置中
|
* CONFIGURED:已配置
|
*/
|
private String status;
|
private String modifyTime;
|
|
public String getType() {
|
return type == null ? "" : type;
|
}
|
|
public void setType(@NonNull String type) {
|
this.type = type;
|
}
|
|
public String getStatus() {
|
return status == null ? "" : status;
|
}
|
|
public void setStatus(@NonNull String status) {
|
this.status = status;
|
}
|
|
public String getModifyTime() {
|
return modifyTime == null ? "" : modifyTime;
|
}
|
|
public void setModifyTime(@NonNull String modifyTime) {
|
this.modifyTime = modifyTime;
|
}
|
}
|