From 6ee7dd9c3d8cc211ee5a01bbe481cabbb9c890eb Mon Sep 17 00:00:00 2001
From: wyu <kknd09321@nate.com>
Date: 월, 22 11월 2021 12:42:31 +0900
Subject: [PATCH] 이슈 상세 연관,하위 테이블 표시 설정 - [프론트]

---
 src/main/resources/mybatis/query-template/issueDepartment-template.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/mybatis/query-template/issueDepartment-template.xml b/src/main/resources/mybatis/query-template/issueDepartment-template.xml
index 2aa9432..93b35c7 100644
--- a/src/main/resources/mybatis/query-template/issueDepartment-template.xml
+++ b/src/main/resources/mybatis/query-template/issueDepartment-template.xml
@@ -34,8 +34,8 @@
     <!--    �씠�뒋 �떞�떦遺��꽌瑜� 議고쉶�븳�떎 -->
     <select id="findByDepartmentIdAndProjectId" resultType="java.util.HashMap" parameterType="java.util.HashMap">
         SELECT DISTINCT(i.id) FROM issue i
-                                       INNER JOIN issue_department iu ON iu.issue_id = i.id
-                                       INNER JOIN department d ON d.id = iu.department_id
+           INNER JOIN issue_department iu ON iu.issue_id = i.id
+           INNER JOIN department d ON d.id = iu.department_id
         WHERE i.project_id = #{projectId} AND d.id = #{departmentId}
     </select>
 

--
Gitblit v1.8.0