李昊 4 éve
szülő
commit
8bc0f76d4b

+ 2 - 2
GxPress/Repository/GxPress.Repository.Implement/WorkFlow/FlowTodoRepository.cs

@@ -81,11 +81,11 @@ namespace GxPress.Repository.Implement.WorkFlow
         {
             string sql = $@"
             SELECT 
-                    *
+                   a.*
                 FROM
                     tede_flow_todo a
                         INNER JOIN
-                    tede_user b ON a.UserId = b.UserId
+                    tede_user b ON a.UserId = b.Id
                 WHERE
                     a.FlowId = {flowId} order by a.Sort 
             ";