李昊 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 
             ";