-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BE] feat: 발자국 삭제 및 발자국 상태 수동 변경 구현 (#460)
- Loading branch information
Showing
13 changed files
with
285 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...c/main/java/com/happy/friendogly/footprint/dto/request/UpdateWalkStatusManualRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.happy.friendogly.footprint.dto.request; | ||
|
||
import jakarta.validation.constraints.NotBlank; | ||
|
||
public record UpdateWalkStatusManualRequest( | ||
|
||
@NotBlank(message = "walkStatus는 빈 문자열이나 null을 입력할 수 없습니다.") | ||
String walkStatus | ||
) { | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
...c/main/java/com/happy/friendogly/footprint/dto/response/UpdateWalkStatusAutoResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.happy.friendogly.footprint.dto.response; | ||
|
||
import com.happy.friendogly.footprint.domain.WalkStatus; | ||
import java.time.LocalDateTime; | ||
|
||
public record UpdateWalkStatusAutoResponse( | ||
WalkStatus walkStatus, | ||
LocalDateTime changedWalkStatusTime | ||
) { | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
...main/java/com/happy/friendogly/footprint/dto/response/UpdateWalkStatusManualResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.happy.friendogly.footprint.dto.response; | ||
|
||
import com.happy.friendogly.footprint.domain.WalkStatus; | ||
import java.time.LocalDateTime; | ||
|
||
public record UpdateWalkStatusManualResponse( | ||
WalkStatus walkStatus, | ||
LocalDateTime changedWalkStatusTime | ||
) { | ||
|
||
} |
7 changes: 0 additions & 7 deletions
7
...d/src/main/java/com/happy/friendogly/footprint/dto/response/UpdateWalkStatusResponse.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.