refactor:将AppDataCenterService改为AppCenterService,将AppDataStorageService改为AppStorageService,将触发器的增删改成合并

This commit is contained in:
2025-10-18 17:18:09 +08:00
parent 816827e5e9
commit 595139fb02
64 changed files with 1159 additions and 599 deletions

View File

@@ -0,0 +1,25 @@
using System;
namespace DMS.Core.Models.Triggers
{
/// <summary>
/// 触发器与变量关联领域模型
/// </summary>
public class TriggerVariable
{
/// <summary>
/// 触发器与变量关联唯一标识符
/// </summary>
public int Id { get; set; }
/// <summary>
/// 外键,指向触发器定义的 Id
/// </summary>
public int TriggerDefinitionId { get; set; }
/// <summary>
/// 外键,指向变量的 Id
/// </summary>
public int VariableId { get; set; }
}
}