param update

This commit is contained in:
youbeen 2025-06-19 15:23:15 +09:00
parent e53b67c66c
commit a155f6470f

View File

@ -47,7 +47,7 @@ public interface StoreJpaRepository extends JpaRepository<StoreEntity, Long> {
List<StoreEntity> findByCategory(String category);
@Query("SELECT s FROM StoreEntity s WHERE s.storeName like %:storeName%")
List<StoreEntity> finByStoreNameContaining(@Param("keyword") String storeName);
List<StoreEntity> finByStoreNameContaining(@Param("storeName") String storeName);
/**
* 상태로 매장 조회
*/