继续修改触发器(未完成,修改一个触发器可以添加多个变量)

This commit is contained in:
2025-09-22 22:58:51 +08:00
parent 0f869cf410
commit 042bc15288
14 changed files with 434 additions and 121 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
namespace DMS.Core.Models.Triggers
{
@@ -37,9 +38,9 @@ namespace DMS.Core.Models.Triggers
public int Id { get; set; }
/// <summary>
/// 关联的变量 ID
/// 关联的变量列表
/// </summary>
public int VariableId { get; set; }
public List<int> VariableIds { get; set; } = new List<int>();
/// <summary>
/// 触发器是否处于激活状态