From 73a49ddd0516e5c9a4b697c593d62c74e420403b Mon Sep 17 00:00:00 2001
From: mac <user@users-MacBook-Pro.local>
Date: 星期四, 24 十月 2024 12:27:31 +0800
Subject: [PATCH] 2024年10月24日12:27:28

---
 HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/template/bean/CloudTemplateSpatialInfo.java |   79 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/template/bean/CloudTemplateSpatialInfo.java b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/template/bean/CloudTemplateSpatialInfo.java
new file mode 100644
index 0000000..f3d47bb
--- /dev/null
+++ b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/template/bean/CloudTemplateSpatialInfo.java
@@ -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;
+    }
+}

--
Gitblit v1.8.0