hxb
2024-10-24 ce88de4891b87c3b7b2750575e15d6e48d518852
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;
    }
}