Skip to content

Commit

Permalink
[fix] categoryId 필드 추가로 인한 toExpenseCompactResponseDto 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JunRain2 committed Aug 17, 2024
1 parent eadca0a commit 8f55597
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ private CompactExpenseResponseDto toExpenseCompactResponseDto(Expense expense) {
.description(expense.getDescription())
.amount(expense.getAmount())
.expenseDate(expense.getExpenseDate())
.categoryId(expense.getCategory().getId())
.build();
}
}
Expand Down

0 comments on commit 8f55597

Please sign in to comment.