Skip to content

Commit

Permalink
[feat] keyword에 movieId 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
syyling committed Mar 28, 2024
1 parent 06d4545 commit 5b7152d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ public class Keyword {
private Review review;

private String word;
private Long movieId;

@Builder
public Keyword(Review review, String word) {
public Keyword(Review review, String word, Long movieId) {
this.review = review;
this.word = word;
this.movieId = movieId;
}
}

0 comments on commit 5b7152d

Please sign in to comment.