Skip to content

Commit

Permalink
feat: add query
Browse files Browse the repository at this point in the history
  • Loading branch information
Kang1221 committed Sep 11, 2024
1 parent dc796cc commit 9d4b615
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/co/orange/ddanzi/repository/BankRepository.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package co.orange.ddanzi.repository;

import co.orange.ddanzi.domain.user.Bank;
import org.springframework.data.jpa.repository.JpaRepository;

public interface BankRepository extends JpaRepository<Bank, Integer> {
Bank findByBankCode(String bankCode);
}

0 comments on commit 9d4b615

Please sign in to comment.