-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
83 additions
and
83 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
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
17 changes: 17 additions & 0 deletions
17
...server/memberRoutine/service/dto/request/MemberDailyRoutineListAcquireServiceRequest.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,17 @@ | ||
package com.soptie.server.memberRoutine.service.dto.request; | ||
|
||
import lombok.Builder; | ||
|
||
import static lombok.AccessLevel.PRIVATE; | ||
|
||
@Builder(access = PRIVATE) | ||
public record MemberDailyRoutineListAcquireServiceRequest( | ||
long memberId | ||
) { | ||
|
||
public static MemberDailyRoutineListAcquireServiceRequest of(long memberId) { | ||
return MemberDailyRoutineListAcquireServiceRequest.builder() | ||
.memberId(memberId) | ||
.build(); | ||
} | ||
} |
17 changes: 0 additions & 17 deletions
17
...tie/server/memberRoutine/service/dto/request/MemberDailyRoutineListGetServiceRequest.java
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
...rver/memberRoutine/service/dto/response/MemberDailyRoutineListAcquireServiceResponse.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,20 @@ | ||
package com.soptie.server.memberRoutine.service.dto.response; | ||
|
||
import lombok.Builder; | ||
import lombok.NonNull; | ||
|
||
import java.util.List; | ||
|
||
import static lombok.AccessLevel.PRIVATE; | ||
|
||
@Builder(access = PRIVATE) | ||
public record MemberDailyRoutineListAcquireServiceResponse( | ||
@NonNull List<MemberDailyRoutinesAcquireServiceResponse> routines | ||
) { | ||
|
||
public static MemberDailyRoutineListAcquireServiceResponse of(List<MemberDailyRoutinesAcquireServiceResponse> routines) { | ||
return MemberDailyRoutineListAcquireServiceResponse.builder() | ||
.routines(routines) | ||
.build(); | ||
} | ||
} |
20 changes: 0 additions & 20 deletions
20
...e/server/memberRoutine/service/dto/response/MemberDailyRoutineListGetServiceResponse.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