Skip to content

Commit

Permalink
feat: 오늘의 다짐 추가 API 응답 데이터 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimjm9841 committed Feb 13, 2024
1 parent 89bfc88 commit 9a5f3e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public static Resolution toAddResolution(Long order, ResolutionRequest.AddResolu
public static ResolutionResponse.AddResultDTO toAddResolutionResultDTO(Resolution resolution){
return ResolutionResponse.AddResultDTO.builder()
.resolutionId(resolution.getId())
.date(resolution.getDate())
.order(resolution.getOrder())
.content(resolution.getContent())
.createdAt(resolution.getCreatedAt())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public class ResolutionResponse {
@AllArgsConstructor
public static class AddResultDTO{
Long resolutionId;
LocalDate date;
Integer order;
String content;
LocalDateTime createdAt;
Expand Down

0 comments on commit 9a5f3e2

Please sign in to comment.