初步完成数据处理链条

This commit is contained in:
2025-09-04 13:40:07 +08:00
parent bdae3355aa
commit bc8bc58d9b
18 changed files with 175 additions and 345 deletions

View File

@@ -0,0 +1,17 @@
using DMS.Application.DTOs;
using DMS.Core.Models;
namespace DMS.Application.Models
{
public class VariableContext
{
public VariableDto Data { get; set; }
public bool IsHandled { get; set; }
public VariableContext(VariableDto data)
{
Data = data;
IsHandled = false; // 默认未处理
}
}
}