2-8 空间事件
2.8空间事件
Topic(租户级):{tenant}/proj_{project}/v1-business-model-space
project:AIoT颁发的项目编码
Topic(租户级):{tenant}/proj_{projectId}/v1-business-model-error-customer
error标识此topic是外部业务模型事件的错误响应消息
2.8.1 空间增删改事件(s0050001)
事件定义
事件名称 | 事件类型 | 事件描述 |
---|---|---|
add | 通知型 | 空间新增事件 |
edit | 通知型 | 空间更新事件 |
delete | 通知型 | 空间删除事件 |
{
"reportTs":1661154622,
"profile":{
"poiCode":"s0050001",
"appType":"space",
"modelId":50001
},
"events":{
"add":{
"eventType":1,
"eventTs":148813512323,
"spaceInfoList":[
{
"id":123,
"name":"一个建筑",
"code":"MR001",
"type":2,
"buildingArea":"100 sqm",
"height":"30",
"direction":"",
"sort":1,
"description":"A building",
"parentId":-1,
"parentName":"",
"path":"123"
"pathName":"一个建筑"
"creationTime":1654321234,
"creatorUserId":" ",
"lastModificationTime":1654325678,
"lastModifierUserId":"user456",
"level":1,
"meta":{
"key1":"value1",
"key2":"value2"
}
},
{
"id":234,
"name":"一个楼层",
"code":"MR002",
"type":4,
"height":"3",
"direction":"",
"sort":1,
"description":"A floor",
"parentId":123,
"parentName":"一个建筑",
"path":"123/234"
"pathName":"一个建筑/一个楼层"
"creationTime":1654321234,
"creatorUserId":"user123",
"lastModificationTime":1654325678,
"lastModifierUserId":"user456",
"level":2,
"meta":{
"key1":"value1",
"key2":"value2"
}
},
{
"id":345,
"name":"一个房间",
"code":"MR003",
"type":5,
"height":"3",
"direction":"",
"sort":1,
"description":"A meeting room for up to 10 people",
"parentId":234,
"parentName":"一个楼层",
"path":"123/234/345"
"pathName":"一个建筑/一个楼层/一个房间"
"creationTime":1654321234,
"creatorUserId":"user123",
"lastModificationTime":1654325678,
"lastModifierUserId":"user456",
"level":3,
"meta":{
"key1":"value1",
"key2":"value2"
}
}
]
}
}
}
{
"reportTs":1661154622,
"profile":{
"poiCode":"s0050001",
"appType":"space",
"modelId":50001
},
"events": {
"add_error": {
"eventTs": 148813512323,
"eventType": 2, //2标识这是错误告警
"msg":"删除失败", //公共参数,数据类型:string;与api公共参数一致
"status":"SPACE_ADD_ERROR",//错误码,数据类型:string;与api公共参数一致
"code":400,//错误码,默认400,数据类型:int;与api公共参数一致
"spaceInfoList":[{
...
}]
}
}
}
字段定义
字段名称 | 字段类型 | 字段描述 | 是否必传 | 长度 |
---|---|---|---|---|
eventType | int | 事件类型,此处默认1 | 是 | |
eventTs | long | 事件时间 | 是 | 秒级时间戳 |
id | String | 来源方空间ID | 是 | |
name | String | 空间名称 | 是 | 20 |
code | String | 空间编码(唯一编码) | 是 | 20 |
type | int | 空间类型(1 建筑群 2 建筑 3 单元 4 楼层 5 房间 6 区域(非房源都是区域)) | 是 | |
building_area | String | 建筑面积 | 否 | 50 |
height | String | 空间高度 | 否 | 50 |
direction | String | 空间方向(朝向) | 否 | 50 |
project_id | long | 项目ID | 是 | |
sort | int | 排序字段 (空间当前层级排序) | 否 | |
description | String | 空间描述 | 否 | 50 |
parent_id | String | 来源方父级空间ID(根节点为-1) | 是 | |
parent_name | String | 父级空间名称 | 是 | 50 |
path | String | 空间ID路由(从根节点到该节点的ID路由,ID之间用/隔开) | 是 | 200 |
pathName | String | 空间名称路由(从根节点到该节点的名称路由,名称之间用/隔开) | 是 | 200 |
creation_time | long | 创建时间戳 | 否 | |
creator_user_id | String | 创建者用户ID | 否 | 50 |
last_modification_time | long | 最后修改时间戳 | 否 | |
last_modifier_user_id | String | 最后修改者用户ID | 否 | 50 |
level | int | 空间层级(1级为根节点) | 否 | |
meta | jsonb | 元数据,用于存储其他信息 | 否 |
{
"reportTs":1661154622,
"profile":{
"poiCode":"s0050001",
"appType":"space",
"modelId":50001
},
"events":{
"edit":{
"eventType":1,
"eventTs":148813512323,
"spaceInfoList":[
{
"id":345,
"name":"一个房间",
"code":"MR003",
"type":5,
"height":"3",
"direction":"",
"sort":1,
"description":"A meeting room for up to 10 people",
"parentId":234,
"parentName":"一个楼层",
"path":"123/234/345"
"pathName":"一个建筑/一个楼层/一个房间"
"creationTime":1654321234,
"creatorUserId":"user123",
"lastModificationTime":1654325678,
"lastModifierUserId":"user456",
"level":3,
"meta":{
"key1":"value1",
"key2":"value2"
}
}
]
}
}
}
{
"reportTs":1661154622,
"profile":{
"poiCode":"s0050001",
"appType":"space",
"modelId":50001
},
"events": {
"edit_error": {
"eventTs": 148813512323,
"eventType": 2, //2标识这是错误告警
"msg":"删除失败", //公共参数,数据类型:string;与api公共参数一致
"status":"SPACE_UPDATE_ERROR",//错误码,数据类型:string;与api公共参数一致
"code":400,//错误码,默认400,数据类型:int;与api公共参数一致
"spaceInfoList":[{
...
}]
}
}
}
字段定义
字段名称 | 字段类型 | 字段描述 | 是否必传 | 长度 |
---|---|---|---|---|
eventType | int | 事件类型,此处默认1 | 是 | |
eventTs | long | 事件时间 | 是 | 秒级时间戳 |
id | String | 来源方空间ID | 是 | |
name | String | 空间名称 | 是 | 20 |
code | String | 空间编码(唯一编码) | 是 | 20 |
type | int | 空间类型(1 建筑群 2 建筑 3 单元 4 楼层 5 房间 6 区域(非房源都是区域)) | 是 | |
building_area | String | 建筑面积 | 否 | 50 |
height | String | 空间高度 | 否 | 50 |
direction | String | 空间方向(朝向) | 否 | 50 |
sort | int | 排序字段(空间当前层级排序) | 否 | |
description | String | 空间描述 | 否 | 50 |
parent_id | String | 来源方父级空间ID(根节点为-1) | 是 | |
parent_name | String | 父级空间名称 | 是 | 50 |
path | String | 空间ID路由(从根节点到该节点的ID路由,ID之间用/隔开) | 是 | 200 |
pathName | String | 空间名称路由(从根节点到该节点的名称路由,名称之间用/ 隔开) | 是 | 200 |
creation_time | long | 创建时间戳 | 否 | |
creator_user_id | String | 创建者用户ID | 否 | 50 |
last_modification_time | long | 最后修改时间戳 | 否 | |
last_modifier_user_id | String | 最后修改者用户ID | 否 | 50 |
level | int | 空间层级(1级为根节点) | 是 | |
meta | jsonb | 元数据,用于存储其他信息 | 否 |
{
"reportTs":1661154622,
"profile":{
"poiCode":"s0050001",
"appType":"space",
"modelId":50001
},
"events": {
"delete": {
"eventTs": 148813512323,
"eventType": 1,
"spaceInfoList":[{
"id":"唯一标识"
}]
}
}
}
{
"reportTs":1661154622,
"profile":{
"poiCode":"s0050001",
"appType":"space",
"modelId":50001
},
"events": {
"delete_error": {
"eventTs": 148813512323,
"eventType": 2, //2标识这是错误告警
"msg":"删除失败", //公共参数,数据类型:string;与api公共参数一致
"status":"SPACE_DELETE_ERROR",//错误码,数据类型:string;与api公共参数一致
"code":400,//错误码,默认400,数据类型:int;与api公共参数一致
"spaceInfoList":[{
"id":"唯一标识"
}]
}
}
}
字段定义
字段名称 | 字段类型 | 字段描述 | 是否必传 | 长度 |
---|---|---|---|---|
eventType | int | 事件类型,此处默认1 | 是 | |
eventTs | long | 事件时间 | 是 | 秒级时间戳 |
id | String | 来源方空间ID(房间、单元、楼层、建筑或区域的唯一ID) | 是 | - |
Tabs {.tabset}
消息体JAVA类
金蝶房间消息转换为达实空间消息 工具方法参考
修 改于 2023-08-11 09:38:15