Skip to content

Commit

Permalink
✨ Feat: 생일 날짜에 대한 DTO 컬럼 추가
Browse files Browse the repository at this point in the history
<body>
생일 스케줄에 대한 기록 날짜를 반환하기 위한 컬럼 추가

- 관련 : #394
  • Loading branch information
hosung-222 committed Oct 26, 2024
1 parent 1be5bcd commit d39ada0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ public static class DiaryExistDateDto {
private List<Integer> DiaryDateForPersonal;
@Schema(description = "모임 스케줄에 대한 일기가 존재하는 날짜", example = "2, 3, 6")
private List<Integer> DiaryDateForMeeting;
@Schema(description = "생일 스케줄에 대한 일기가 존재하는 날짜", example = "22")
private List<Integer> DiaryDateForBirthday;
}

@Builder
Expand Down

0 comments on commit d39ada0

Please sign in to comment.