Skip to content

Commit

Permalink
Fix : 영수증용 일정 목록 API 컬럼 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Dayon-Hong committed Aug 12, 2024
1 parent e3b60b6 commit e6cd2c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
@Setter
public class ScheduleListWithReceiptResponse {

private Long scheduleId ;

private String scheduleName;

private String startDate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public ScheduleListWithReceiptResponse toScheduleListWithReceiptResponse(Schedul
String currencyName = schedule.getCountry().getCurrencyName();

return new ScheduleListWithReceiptResponse(
schedule.getId(),
schedule.getScheduleName(),
schedule.getStartDate(),
schedule.getEndDate(),
Expand Down

0 comments on commit e6cd2c5

Please sign in to comment.