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

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,3 +1,4 @@
using System.Collections.Generic;
using DMS.Core.Models.Triggers;
// 引入枚举
@@ -15,9 +16,9 @@ namespace DMS.Application.DTOs
public int Id { get; set; }
/// <summary>
/// 关联的变量 ID
/// 关联的变量 ID 列表
/// </summary>
public int VariableId { get; set; }
public List<int> VariableIds { get; set; } = new List<int>();
/// <summary>
/// 触发器是否处于激活状态