Skip to content

Commit

Permalink
[fix] 행사 종료 시간 포맷 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
doyeoo committed Nov 24, 2023
1 parent c7b0ada commit 652e1af
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package sungdong29.backend.domain.event.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
Expand All @@ -14,6 +15,7 @@ public class SimpleEventVo {
private Long placeId;
private String placeName;
private String name;
@JsonFormat(pattern = "MM/dd HH:mm")
private LocalDateTime endDate;
private String url;

Expand Down

0 comments on commit 652e1af

Please sign in to comment.