feat:【IoT 物联网】增加配置推送哈

This commit is contained in:
YunaiV
2025-06-20 09:36:42 +08:00
parent f5c2ee2ae5
commit a17d4bb281

View File

@@ -36,6 +36,11 @@ public enum IotDeviceMessageMethodEnum implements ArrayValuable<String> {
SERVICE_INVOKE("thing.service.invoke", "服务调用", false),
// ========== 设备配置 ==========
// 可参考https://help.aliyun.com/zh/iot/user-guide/remote-configuration-1
CONFIG_PUSH("thing.config.push", "配置推送", true),
;
public static final String[] ARRAYS = Arrays.stream(values()).map(IotDeviceMessageMethodEnum::getMethod)