- 规范
- 项目管理
- 模型管理
- 存储管理
- 任务管理
- 能力服务
- 模型对比-SZ-IFC
- 轻量化展示
- 图纸识别
- 图模匹配
- 空间计算
- 模型对比-Revit
- 项目维度统计查询
- 模型维度统计查询
- 单体维度统计查询
- 能力列表POST
- 能力接口列表POST
- 模型文件Hash存储POST
- 模型文件Hash查询POST
- 模型对比-SZ-IFC
查询机电系统树
开发中
POST
/dms_symbol_sz/api/bim/middleGround/mepSystemTree
请求参数
Body 参数application/json
list
array [object {2}]
必需
documentId
string
模型id
documentVersion
string
模型版本
示例
{
"list": [
{
"documentId": "string",
"documentVersion": "string"
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/dms_symbol_sz/api/bim/middleGround/mepSystemTree' \
--header 'Content-Type: application/json' \
--data-raw '{
"list": [
{
"documentId": "string",
"documentVersion": "string"
}
]
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
errmsg
string
必需
data
array [object {3}]
必需
documentId
string
模型id
documentVersion
integer
模型版本
componentList
array [object {10}]
构件集合
示例
{
"code": 0,
"errmsg": "string",
"data": [
{
"documentId": "string",
"documentVersion": 0,
"componentList": [
{
"guid": "string",
"name": "string",
"ifcBuildingId": "string",
"documentId": "string",
"documentVersion": 0,
"singleBuildingId": "string",
"projectId": "string",
"createTime": "string",
"updateTime": "string",
"tree": [
{
"guid": "string",
"name": "string",
"children": [
{
"guid": "string",
"name": "string"
}
]
}
]
}
]
}
]
}
修改于 2023-09-20 00:44:49