From 03a0d4556fb01d409a5630b3c002e259fe32c407 Mon Sep 17 00:00:00 2001 From: jhjang <jhjang@maprex.co.kr> Date: 화, 08 2월 2022 10:49:00 +0900 Subject: [PATCH] - api 이슈 추가시 종료 상태인 상위 이슈에도 추가가 되도록 수정 - 종료 처리된 상위이슈에 하위이슈로 추가 될 경우 상위 이슈를 자동으로 대기 상태로 변경하도록 수정 --- src/main/resources/mybatis/query-template/guide-template.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/mybatis/query-template/guide-template.xml b/src/main/resources/mybatis/query-template/guide-template.xml index 6b93775..f2f69f1 100644 --- a/src/main/resources/mybatis/query-template/guide-template.xml +++ b/src/main/resources/mybatis/query-template/guide-template.xml @@ -18,7 +18,7 @@ <if test="title != '' and title != null"> AND n.title like CONCAT('%',#{title},'%') </if> - ORDER BY ID DESC + ORDER BY n.register_date DESC <if test="page != null and !page.equals('')"> limit #{pageSize} offset #{page}; </if> @@ -50,7 +50,7 @@ <if test="title != '' and title != null"> AND n.title like CONCAT('%',#{title},'%') </if> - ORDER BY ID DESC + ORDER BY n.register_date DESC <if test="page != null and !page.equals('')"> limit #{pageSize} offset #{page}; </if> -- Gitblit v1.8.0