Skip to content

Commit

Permalink
Merge pull request #24 from Team-Walkie/mvc/byeonghee
Browse files Browse the repository at this point in the history
fix: νƒ€μž… μˆ˜μ •
  • Loading branch information
bngsh authored Sep 6, 2023
2 parents 0bef286 + b658719 commit 2aeee7c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/com/whyranoid/walkie/dto/WalkingDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import lombok.Getter;
import lombok.NoArgsConstructor;

import java.util.Date;

@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class WalkingDto {
Expand All @@ -16,7 +14,7 @@ public class WalkingDto {
private Long walkieId;

@Schema(description = "μš”μ²­ ν•„μˆ˜ νŒŒλΌλ―Έν„° - μš΄λ™ μ‹œμž‘ μ‹œκ°„", requiredMode = Schema.RequiredMode.REQUIRED, example = "2023-07-31T15:08:31.689Z")
private Date startTime;
private String startTime;

@Schema(description = "응닡 νŒŒλΌλ―Έν„° - μƒμ„±λœ 기둝의 아이디", example = "15")
private Long historyId;
Expand All @@ -28,7 +26,7 @@ public class WalkingDto {
// private String authId;

@Builder
public WalkingDto(Long walkieId, Date startTime, Long historyId, Character newStatus, String authId, Long likerId) {
public WalkingDto(Long walkieId, String startTime, Long historyId, Character newStatus, String authId, Long likerId) {
this.walkieId = walkieId;
this.startTime = startTime;
this.historyId = historyId;
Expand Down

0 comments on commit 2aeee7c

Please sign in to comment.