Skip to content

Commit

Permalink
[feat] Movie 테이블 tagline 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
syyling committed Apr 4, 2024
1 parent c4c10c2 commit 59d8dcf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ public class Movie {
private String poster;
private String nation;
private String tmdbId;
private String tagline;


@Builder
public Movie(String title, String year, String director, String genre,
String plot, String poster, String nation, String tmdbId) {
String plot, String poster, String nation, String tmdbId, String tagline) {
this.title = title;
this.year = year;
this.director = director;
Expand All @@ -35,5 +36,6 @@ public Movie(String title, String year, String director, String genre,
this.poster = poster;
this.nation = nation;
this.tmdbId = tmdbId;
this.tagline = tagline;
}
}

0 comments on commit 59d8dcf

Please sign in to comment.