李昊 4 년 전
부모
커밋
8bc0f76d4b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      GxPress/Repository/GxPress.Repository.Implement/WorkFlow/FlowTodoRepository.cs

+ 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 
             ";