Skip to content

Commit

Permalink
Merge pull request #54 from Bamsongee/feat/#53-chagne-time-integer
Browse files Browse the repository at this point in the history
Fix: 소요시간 필터링을 위해 Recipe CSV time 필드 정수로 변환
  • Loading branch information
7beunseo authored Aug 17, 2024
2 parents c12ea9d + 2c9d06e commit c13a904
Show file tree
Hide file tree
Showing 3 changed files with 191 additions and 191 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class RecipeResponseDTO {
private List<String> ingredients;
private String recipe;
private String serving;
private String time;
private Integer time;
private String difficulty;
private String keyword;
private String category;
Expand Down Expand Up @@ -60,7 +60,7 @@ public static class list {
private String name;
private String link;
private String imageUrl;
private String time;
private Integer time;
private String difficulty;
private String keyword;
private String category;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class RecipeEntity extends BaseEntity{
private String serving;

@CsvBindByName(column = "time")
private String time;
private Integer time;

@CsvBindByName(column = "difficulty")
private String difficulty;
Expand Down
Loading

0 comments on commit c13a904

Please sign in to comment.