【功能完善】IoT: 规则场景监听器相关组件

This commit is contained in:
puhui999
2025-03-20 18:46:59 +08:00
parent 14ffb6483f
commit 9389cf8863
3 changed files with 53 additions and 38 deletions

View File

@ -2,12 +2,12 @@ import request from '@/config/axios'
// IoT 规则场景(场景联动) VO
export interface RuleSceneVO {
id: number // 场景编号
name: string // 场景名称
description: string // 场景描述
status: number // 场景状态
triggers: string // 触发器数组
actions: string // 执行器数组
id?: number // 场景编号
name?: string // 场景名称
description?: string // 场景描述
status?: number // 场景状态
triggers?: any[] // 触发器数组
actions?: any[] // 执行器数组
}
// IoT 规则场景(场景联动) API