Skip to content

Commit

Permalink
refactor: 식단 조회 API DTO 필드명 변경 (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
songsunkook authored and Choi-JJunho committed May 9, 2024
1 parent a7aaed6 commit dbe3677
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ public record DiningResponse(

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Schema(description = "품절 시각", example = "2024-04-04 23:01:52")
LocalDateTime soldOut,
LocalDateTime soldoutAt,

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Schema(description = "메뉴 변경 시각", example = "2024-04-04 23:01:52")
LocalDateTime isChanged
LocalDateTime changedAt
) {

public static DiningResponse from(Dining dining) {
Expand Down

0 comments on commit dbe3677

Please sign in to comment.