-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
7 changed files
with
82 additions
and
7 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
10 changes: 10 additions & 0 deletions
10
src/main/java/sopt/org/hmh/domain/point/dto/response/ChallengePointStatusListResponse.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,10 @@ | ||
package sopt.org.hmh.domain.point.dto.response; | ||
|
||
import java.util.List; | ||
|
||
public record ChallengePointStatusListResponse( | ||
Integer point, | ||
Integer period, | ||
List<ChallengePointStatusResponse> challengePointStatuses | ||
) { | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/sopt/org/hmh/domain/point/dto/response/ChallengePointStatusResponse.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 sopt.org.hmh.domain.point.dto.response; | ||
|
||
import sopt.org.hmh.domain.dailychallenge.domain.Status; | ||
|
||
import java.time.LocalDate; | ||
|
||
public record ChallengePointStatusResponse( | ||
LocalDate challengeDate, | ||
Status status | ||
) { | ||
} |
1 change: 0 additions & 1 deletion
1
src/main/java/sopt/org/hmh/domain/point/dto/response/EarnPointResponse.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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
package sopt.org.hmh.domain.point.dto.response; | ||
|
||
|
||
public record EarnPointResponse( | ||
Integer userPoint | ||
) { | ||
|
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