chore: 构建

This commit is contained in:
陈淳
2024-01-11 10:23:42 +08:00
parent e394726eef
commit 6ae73e6c2b

View File

@@ -66,7 +66,7 @@ namespace Yi.Framework.Rbac.Application.Services.System
.LeftJoin<DeptEntity>((user, dept) => user.DeptId == dept.Id)
.OrderByDescending(x=>x.CreationTime)
.OrderByDescending(user => x.CreationTime)
.Select((user, dept) => new UserGetListOutputDto(), true)
.ToPageListAsync(input.SkipCount, input.MaxResultCount, total);