From 4f06edc9eb709296f30850b49435636f3ddcd692 Mon Sep 17 00:00:00 2001 From: gunsight1 Date: Sun, 3 Mar 2024 19:38:48 +0900 Subject: [PATCH] =?UTF-8?q?*=20=EA=B9=83=ED=97=88=EB=B8=8C=20=EC=9E=A5?= =?UTF-8?q?=EC=95=A0=EC=8B=9C(=3F)=20=EB=B0=9C=EC=83=9D=20=EB=90=9C=20merg?= =?UTF-8?q?e=20=EC=BD=94=EB=93=9C=20=EB=88=84=EB=9D=BD=20=EC=A1=B0?= =?UTF-8?q?=EC=B9=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/kernel360/product/repository/ProductRepository.java | 1 + 1 file changed, 1 insertion(+) diff --git a/module-domain/src/main/java/com/kernel360/product/repository/ProductRepository.java b/module-domain/src/main/java/com/kernel360/product/repository/ProductRepository.java index 36dcf296..c7ec0071 100644 --- a/module-domain/src/main/java/com/kernel360/product/repository/ProductRepository.java +++ b/module-domain/src/main/java/com/kernel360/product/repository/ProductRepository.java @@ -78,5 +78,6 @@ Page findByProductWithKeywordAndSafetyStatus(@Param("keyword") String k @Param("safetyStatus") SafetyStatus safetyStatus, Pageable pageable); + Page findByProductNameContaining(String keyword, Pageable pageable); }