Skip to content

Commit

Permalink
fix: 엔티티 오타 수정(#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
whereami2048 committed May 21, 2024
1 parent 96aafc9 commit 544058f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public interface ExperienceJpaRepository extends JpaRepository<ExperienceJpaEnti
List<ExperienceJpaEntity> findByTitleContaining(String title);

@Modifying
@Query("select e from ExperienceTagJpaEntity e where e.experienceId in :experienceIds")
@Query("select e from ExperienceJpaEntity e where e.experienceId in :experienceIds")
List<ExperienceJpaEntity> findByIds(@Param("experienceIds") List<UUID> experienceIds);

List<ExperienceJpaEntity> findByCreatedAtBetween(LocalDateTime startYear, LocalDateTime endYear);
Expand Down

0 comments on commit 544058f

Please sign in to comment.