refactor(workflow):

- 将User字段重命名为UserId以提高代码可读性
main
陈伟 2026-02-08 09:03:59 +08:00
parent 669e19cddc
commit b6818328d6
1 changed files with 1 additions and 1 deletions

View File

@ -1230,7 +1230,7 @@ public class WorkflowEngineApp : SqlSugarBaseApp<SysCategoryType, SugarDbContext
.Where((u, ur, uo, o) => ur.RoleId == roleId)
.Select((u, ur, uo, o) => new
{
User = u.Id,
UserId = u.Id,
UserName = u.Name,
Dept = o.Name
}).ToList();