From e20e7b97af8651eb594f826fc6ac22791e98b10a Mon Sep 17 00:00:00 2001 From: 0703kyj Date: Mon, 13 Jan 2025 21:08:44 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20=EC=9E=85=EA=B8=88=EC=9E=90=EB=AA=85?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EA=B2=80=EC=83=89=EB=90=98=EB=8F=84?= =?UTF-8?q?=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/uket/domain/ticket/repository/TicketRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domain/ticket-domain/src/main/java/com/uket/domain/ticket/repository/TicketRepository.java b/domain/ticket-domain/src/main/java/com/uket/domain/ticket/repository/TicketRepository.java index a1a0a9af..7db596fe 100644 --- a/domain/ticket-domain/src/main/java/com/uket/domain/ticket/repository/TicketRepository.java +++ b/domain/ticket-domain/src/main/java/com/uket/domain/ticket/repository/TicketRepository.java @@ -36,7 +36,7 @@ public interface TicketRepository extends JpaRepository { Page findByStatus(TicketStatus status, Pageable pageable); - @Query("SELECT t FROM Ticket t WHERE t.user.userDetails.depositorName LIKE %:depositorName") + @Query("SELECT t FROM Ticket t WHERE t.user.userDetails.depositorName LIKE %:depositorName%") Page findByDepositorName(String depositorName, Pageable pageable); @Query("SELECT t FROM Ticket t WHERE t.user.userDetails.phoneNumber LIKE %:lastFourDigits")