wjc
2025-05-07 b9cc7390e8e8ce64c41c26fb369c98ce669d660c
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.hdl.sdk.link.bean;
 
import androidx.annotation.NonNull;
 
import java.io.Serializable;
 
/**
 * Created by jlchen on 12/20/21.
 */
public class LinkRoomBean implements Serializable {
 
    private String uid;//房间或者楼层的Id
    private String name;//房间或者楼层名字
    private String roomType;//类型 FLOOR = 楼层 ROOM = 房间
    private String roomImage;//房间图片
    private String parentId;//父节点Id,房间分配的楼层的ID
 
    public LinkRoomBean(String name) {
        this.name = name;
    }
 
    public LinkRoomBean() {
 
    }
 
    @NonNull
    public String getUid() {
        return uid == null ? "" : uid;
    }
 
    public void setUid(@NonNull String uid) {
        this.uid = uid;
    }
 
    @NonNull
    public String getName() {
        return name == null ? "" : name;
    }
 
    public void setName(@NonNull String name) {
        this.name = name;
    }
 
    @NonNull
    public String getRoomType() {
        return roomType == null ? "" : roomType;
    }
 
    public void setRoomType(@NonNull String roomType) {
        this.roomType = roomType;
    }
 
    @NonNull
    public String getRoomImage() {
        return roomImage == null ? "" : roomImage;
    }
 
    public void setRoomImage(@NonNull String roomImage) {
        this.roomImage = roomImage;
    }
 
    @NonNull
    public String getParentId() {
        return parentId == null ? "" : parentId;
    }
 
    public void setParentId(@NonNull String parentId) {
        this.parentId = parentId;
    }
 
}