Skip to content

Commit

Permalink
feat: lazy 로딩 옵션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
dgjinsu committed Feb 15, 2024
1 parent 35e2733 commit 51b24db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jikgong/domain/workDate/entity/WorkDate.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class WorkDate {
private Integer recruitNum; // 모집 인원
private Integer registeredNum; // 모집된 인원

@ManyToOne
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "job_post_id")
private JobPost jobPost;

Expand Down

0 comments on commit 51b24db

Please sign in to comment.