Skip to content

Commit

Permalink
fix: movie model 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Sep 23, 2023
1 parent 3a20213 commit 98c70a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/flickspick/movie/model/MovieModel.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.flickspick.movie.model;

import com.flickspick.movie.domain.Movie;

import lombok.AllArgsConstructor;
import lombok.Data;

Expand All @@ -23,8 +22,8 @@ public static MovieModel toModel(Movie movie) {
return new MovieModel(
movie.getId(),
movie.getTitle(),
movie.getReason(),
movie.getPlot(),
movie.getReason(),
movie.getPeople(),
movie.getDirector(),
movie.getProducer(),
Expand Down

0 comments on commit 98c70a7

Please sign in to comment.