mac
2023-11-14 54a8c79222bba0644b02fe1dbc5d75e26ea50b5d
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
72
73
74
75
76
77
78
79
package com.hdl.linkpm.sdk.template.bean;/*
 *create by wxr
 *date 2022/2/11
 */
 
import java.io.Serializable;
 
public class CloudTemplateSpatialInfo implements Serializable {
//    -- templateRoomId    房间云端id    string
    private String templateRoomId;
//-- templateExtendsId    模板id    string
    private String templateExtendsId;
//-- templateRoomName    模板房间名称    string
    private String templateRoomName;
//-- templateRoomType    模板房间类型    string
    private String templateRoomType;
//--  templateRoomImage    模板房间图片    string
    private String templateRoomImage;
//-- parentId    模板房间对应楼层id    string
    private String parentId;
//-- uid    uid    string
    private String uid;
 
    public String getTemplateRoomId() {
        return templateRoomId == null ? "" : templateRoomId;
    }
 
    public void setTemplateRoomId(String templateRoomId) {
        this.templateRoomId = templateRoomId;
    }
 
    public String getTemplateExtendsId() {
        return templateExtendsId == null ? "" : templateExtendsId;
    }
 
    public void setTemplateExtendsId(String templateExtendsId) {
        this.templateExtendsId = templateExtendsId;
    }
 
    public String getTemplateRoomName() {
        return templateRoomName == null ? "" : templateRoomName;
    }
 
    public void setTemplateRoomName(String templateRoomName) {
        this.templateRoomName = templateRoomName;
    }
 
    public String getTemplateRoomType() {
        return templateRoomType == null ? "" : templateRoomType;
    }
 
    public void setTemplateRoomType(String templateRoomType) {
        this.templateRoomType = templateRoomType;
    }
 
    public String getTemplateRoomImage() {
        return templateRoomImage == null ? "" : templateRoomImage;
    }
 
    public void setTemplateRoomImage(String templateRoomImage) {
        this.templateRoomImage = templateRoomImage;
    }
 
    public String getParentId() {
        return parentId == null ? "" : parentId;
    }
 
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
 
    public String getUid() {
        return uid == null ? "" : uid;
    }
 
    public void setUid(String uid) {
        this.uid = uid;
    }
}