From 18889533ecbe3f1df153a67f5fdf21095e33ddd0 Mon Sep 17 00:00:00 2001 From: sunga Date: Sun, 17 Sep 2023 17:15:37 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=82=AB=ED=88=AC=EB=91=90=207=EA=B0=9C?= =?UTF-8?q?=20=EC=A0=9C=ED=95=9C=20startDate=20=EC=A1=B0=EA=B1=B4=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nottodo/repository/UserNotToDoJpaRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/bside/NotToDoClub/domain_name/nottodo/repository/UserNotToDoJpaRepository.java b/src/main/java/bside/NotToDoClub/domain_name/nottodo/repository/UserNotToDoJpaRepository.java index dbe4887..3e9979f 100644 --- a/src/main/java/bside/NotToDoClub/domain_name/nottodo/repository/UserNotToDoJpaRepository.java +++ b/src/main/java/bside/NotToDoClub/domain_name/nottodo/repository/UserNotToDoJpaRepository.java @@ -27,7 +27,7 @@ public interface UserNotToDoJpaRepository extends JpaRepository= current_date") + @Query("select count(n) from UserNotToDo n where n.user.id = :userId and n.useYn = true and n.endDate >= current_date and n.startDate <= current_date ") int countUserNotToDoLimitCheck(Long userId); @Query("select n from UserNotToDo n " +