hxb
2024-10-24 d723fee177238df0dbab80eb788876ebd154927d
HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/template/bean/CloudTemplateSpatialInfo.java
New file
@@ -0,0 +1,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;
    }
}