Showing
1 changed file
with
5 additions
and
0 deletions
... | @@ -5,5 +5,10 @@ import org.springframework.data.jpa.repository.JpaRepository; | ... | @@ -5,5 +5,10 @@ import org.springframework.data.jpa.repository.JpaRepository; |
5 | import java.util.List; | 5 | import java.util.List; |
6 | 6 | ||
7 | public interface AccountRepository extends JpaRepository<Account, Integer> { | 7 | public interface AccountRepository extends JpaRepository<Account, Integer> { |
8 | + /** | ||
9 | + * | ||
10 | + * @param integers list of Ids for the Accounts we're looking for | ||
11 | + * @return Accounts looked for | ||
12 | + */ | ||
8 | List<Account> findByUserIdIn(List<Integer> integers); | 13 | List<Account> findByUserIdIn(List<Integer> integers); |
9 | } | 14 | } | ... | ... |
-
Please register or login to post a comment