Skip to content

Commit

Permalink
Merge pull request #160 from FOREGG-DEV/dev
Browse files Browse the repository at this point in the history
♻️ refactor: 가계부 Res ledgerId 추가
DongJun1110 authored Sep 14, 2024
2 parents 6e02ef7 + f773e06 commit 730376b
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -45,7 +45,6 @@ public static LedgerResponseDTO.LedgerDetailResponseDTO toLedgerDetailDTO(Expend
}

return LedgerResponseDTO.LedgerDetailResponseDTO.builder()
.id(expenditure.getId())
.ledgerId(expenditure.getLedger().getId())
.date(expenditure.getLedger().getDate())
.count(expenditure.getLedger().getCount())
Original file line number Diff line number Diff line change
@@ -28,7 +28,6 @@ public class LedgerResponseDTO {
@AllArgsConstructor
@NoArgsConstructor
public static class LedgerDetailResponseDTO {
private Long id;
private Long ledgerId;
private String date;
private int count;

0 comments on commit 730376b

Please sign in to comment.