From fd088a4fb6b98e168c2313837ec0c96ee1fc3f5d Mon Sep 17 00:00:00 2001 From: Mingyu Song <100754581+mikekks@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:27:03 +0900 Subject: [PATCH] =?UTF-8?q?fix(MeetingV2GetMeetingByIdResponseDto):=20?= =?UTF-8?q?=EC=8A=A4=EC=9B=A8=EA=B1=B0=20=EB=AA=85=EC=8B=9C=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=ED=95=B4=EA=B2=B0=20(#436)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v2/dto/response/MeetingV2GetMeetingByIdResponseDto.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/src/main/java/org/sopt/makers/crew/main/meeting/v2/dto/response/MeetingV2GetMeetingByIdResponseDto.java b/main/src/main/java/org/sopt/makers/crew/main/meeting/v2/dto/response/MeetingV2GetMeetingByIdResponseDto.java index a9b385f0..0e97c3ab 100644 --- a/main/src/main/java/org/sopt/makers/crew/main/meeting/v2/dto/response/MeetingV2GetMeetingByIdResponseDto.java +++ b/main/src/main/java/org/sopt/makers/crew/main/meeting/v2/dto/response/MeetingV2GetMeetingByIdResponseDto.java @@ -59,11 +59,11 @@ public class MeetingV2GetMeetingByIdResponseDto { @NotNull private final String processDesc; - @Schema(description = "모임 활동 시작 시간", example = "2024-08-13T15:30:00") + @Schema(description = "모임 활동 시작 시간", example = "2024-08-13T15:30:00", name = "mStartDate") @NotNull private final LocalDateTime mStartDate; - @Schema(description = "모임 활동 종료 시간", example = "2024-10-13T23:59:59") + @Schema(description = "모임 활동 종료 시간", example = "2024-10-13T23:59:59", name = "mEndDate") @NotNull private final LocalDateTime mEndDate;