Skip to content

Commit

Permalink
chore: 사용하지 않는 메서드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
kmebin committed Nov 22, 2023
1 parent 60352bf commit 042a9fd
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
package com.moabam.api.domain.coupon.repository;

import java.util.Optional;

import org.springframework.data.jpa.repository.JpaRepository;

import com.moabam.api.domain.coupon.CouponWallet;

public interface CouponWalletRepository extends JpaRepository<CouponWallet, Long> {

Optional<CouponWallet> findByIdAndMemberId(Long id, Long memberId);
}

0 comments on commit 042a9fd

Please sign in to comment.