From 1f1de9fcd700da64a2bba1766605672e8b620817 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E4=BC=9F?= <421281095@qq.com> Date: Fri, 22 Nov 2024 16:50:26 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=A6=E6=83=85=E6=94=B9=E4=B8=BA=E7=BB=9D?= =?UTF-8?q?=E5=AF=B9=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OpenAuth.App/ServiceApp/Task/PersonTaskApp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenAuth.App/ServiceApp/Task/PersonTaskApp.cs b/OpenAuth.App/ServiceApp/Task/PersonTaskApp.cs index e081698..39cbf49 100644 --- a/OpenAuth.App/ServiceApp/Task/PersonTaskApp.cs +++ b/OpenAuth.App/ServiceApp/Task/PersonTaskApp.cs @@ -126,12 +126,12 @@ public class PersonTaskApp : SqlSugarBaseApp .AsQueryable() .RightJoin((a, b) => a.TifId == b.Id) .Where(a => a.TaskId == result.TaskId && a.TifType == 0) - .Select((a, b) => b.TifName).ToListAsync(); + .Select((a, b) => b.TifPath).ToListAsync(); result.NextPhaseList = await Repository.ChangeRepository>() .AsQueryable() .RightJoin((a, b) => a.TifId == b.Id) .Where(a => a.TaskId == result.TaskId && a.TifType == 1) - .Select((a, b) => b.TifName).ToListAsync(); + .Select((a, b) => b.TifPath).ToListAsync(); return new Response { Result = result