Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ public class ReportMemoDetailResponse {
private LocalTime startTime;
private LocalTime finishedTime;
private LocalDate interviewDate;
private String prosAndCons;
private String analysisResult;
private boolean isSaved;
private List<MemoOutput> memoList;

@Getter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,16 @@ public ReportMemoDetailResponse getMemoDetail(Long userId, Long reportMemoId) {

return ReportMemoDetailResponse.builder()
.reportMemoId(reportMemo.getId())
.companyName(reportMemo.getCompanyName())
.position(reportMemo.getPosition())
.companyAtmosphere(reportMemo.getCompanyAtmosphere())
.interviewers(reportMemo.getInterviewers())
.startTime(reportMemo.getStartTime())
.finishedTime(reportMemo.getFinishedTime())
.interviewDate(reportMemo.getInterviewDate())
.prosAndCons(reportMemo.getProsAndCons())
.analysisResult(reportMemo.getAnalysisResult())
.isSaved(reportMemo.isSaved())
.memoList(memoOutputs)
.build();
}
Expand Down