Skip to content

Commit

Permalink
#82 [refactor] type 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pkl0912 committed Sep 10, 2024
1 parent 9fae0df commit 0876539
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ public record FastDTO(
Long stageId,
Long scheduleId,
String company,
String department
String department,
String type
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,8 @@ public FastReviewListResponse getFastReviews(final Long userId, final int page,
stage.getStageId(),
stage.getSchedule().getScheduleId(),
stage.getSchedule().getCompany(),
stage.getSchedule().getDepartment()
stage.getSchedule().getDepartment(),
stage.getType().getValue()
));
}

Expand Down

0 comments on commit 0876539

Please sign in to comment.