feat:【IoT 物联网】完整实现“数据流转”功能(后台管理)

This commit is contained in:
YunaiV
2025-06-25 21:43:16 +08:00
parent b1ae56281d
commit b5bd1a8fb4
7 changed files with 58 additions and 62 deletions

View File

@ -52,3 +52,10 @@ export const IotDeviceMessageMethodEnum = {
upstream: false
}
}
// IOT 产品物模型类型枚举类
export const IotThingModelTypeEnum = {
PROPERTY: 1, // 属性
SERVICE: 2, // 服务
EVENT: 3 // 事件
}