Skip to content

Commit

Permalink
fix: ApplyRepository 충돌
Browse files Browse the repository at this point in the history
  • Loading branch information
yumzen authored Apr 13, 2024
1 parent a5406fe commit f6216d6
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@

public interface ApplyRepository extends JpaRepository<Apply,Long> {
long countApplyWithStackNameUsingFetchJoinByPost(Post post);
long countApplyByPost(Post post);
boolean existsApplyByMemberAndPost(Member member,Post post);
Page<Apply> findAllByPost(Post post, Pageable pageable);
Page<Apply> findApplyByApplyType(ApplyType applyType, Pageable pageable);
List<Apply> findAllByMemberAndDeletedAtIsNull(Member member);
}
List<Apply> findAllByPost(Post post);
Long findApplyIdByMemberAndPost(Member member,Post post);
}

0 comments on commit f6216d6

Please sign in to comment.