Skip to content

Commit

Permalink
fixed: 오탈자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dgjinsu committed Feb 23, 2024
1 parent 3d04607 commit 6097f30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public interface JobPostRepository extends JpaRepository<JobPost, Long>, JobPost
@Query("select j from JobPost j join fetch j.member m where j.id = :jobPostId")
Optional<JobPost> findByIdWithMember(@Param("jobPostId") Long jobPostId);

@Query("select count(j) from JobPost j where j.id in :jobPostId")
Long findByIdList(List<Long> jobPostIdList);
@Query("select count(j) from JobPost j where j.id in :jobPostIdList")
Long findByIdList(@Param("jobPostIdList") List<Long> jobPostIdList);
}

0 comments on commit 6097f30

Please sign in to comment.