review:【IoT 物联网】MqTT 协议

This commit is contained in:
YunaiV
2025-06-13 23:13:29 +08:00
parent f1368d9e79
commit 7e49c90156
6 changed files with 68 additions and 104 deletions

View File

@@ -23,12 +23,13 @@ public enum IotDeviceMessageMethodEnum implements ArrayValuable<String> {
STATE_OFFLINE("thing.state.offline", true),
// ========== 设备属性 ==========
// 可参考
// https://help.aliyun.com/zh/iot/user-guide/device-properties-events-and-services
// 可参考https://help.aliyun.com/zh/iot/user-guide/device-properties-events-and-services
PROPERTY_POST("thing.property.post", true),
PROPERTY_SET("thing.property.set", false),
// ========== 设备事件 ==========
EVENT_POST("thing.event.post", true),
;