feat(workflow): 添加工作流任务类型字段

- 在WorkflowEngineApp中为任务查询结果添加Type字段映射
- 保持与其他任务属性的一致性结构
main
陈伟 2026-02-07 13:26:12 +08:00
parent a9e25eb9eb
commit d155e1c5ed
1 changed files with 1 additions and 0 deletions

View File

@ -356,6 +356,7 @@ public class WorkflowEngineApp : SqlSugarBaseApp<SysCategoryType, SugarDbContext
Status = w.Status, // 工作项状态
BusinessNo = t.BusinessNumber,
Title = t.Title,
Type = t.Type,
CreateTime = t.CreateTime,
InitiatorName = t.CreateUser //发起人姓名
});