package kr.wisestone.owl.repository; import kr.wisestone.owl.domain.UserWithDraw; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.repository.query.Param; public interface UserWithDrawRepository extends JpaRepository { UserWithDraw findByAccount(@Param("account") String account); }