千问写完触发器功能,错误未修复

This commit is contained in:
2025-09-14 16:16:10 +08:00
parent 25cd43d436
commit a079cf8de8
24 changed files with 1684 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
using System.Threading.Tasks;
namespace DMS.Application.Services.Triggers
{
/// <summary>
/// 触发器动作执行器接口 (负责执行具体的触发动作)
/// </summary>
public interface ITriggerActionExecutor
{
/// <summary>
/// 执行触发动作
/// </summary>
/// <param name="context">触发上下文</param>
/// <returns>任务</returns>
Task ExecuteActionAsync(TriggerContext context);
}
}