-
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.
[Feat]: 복약 일정 조회 시 스티커 파라미터 추가 (#151)
StickerInfo 추가 복약 일정 조회 시 스티커 파라미터 추가 Related to: #150
- Loading branch information
Showing
3 changed files
with
31 additions
and
18 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
17 changes: 8 additions & 9 deletions
17
src/main/java/io/sobok/SobokSobok/pill/ui/dto/PillScheduleInfo.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,19 +1,18 @@ | ||
package io.sobok.SobokSobok.pill.ui.dto; | ||
|
||
import lombok.Builder; | ||
|
||
import java.util.List; | ||
import lombok.Builder; | ||
|
||
@Builder | ||
public record PillScheduleInfo( | ||
|
||
Long scheduleId, | ||
Long pillId, | ||
String pillName, | ||
Boolean isCheck, | ||
Integer color, | ||
List<Long> stickerId, | ||
Long stickerTotalCount | ||
Long scheduleId, | ||
Long pillId, | ||
String pillName, | ||
Boolean isCheck, | ||
Integer color, | ||
List<StickerInfo> stickerId, | ||
Long stickerTotalCount | ||
) { | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/io/sobok/SobokSobok/pill/ui/dto/StickerInfo.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 io.sobok.SobokSobok.pill.ui.dto; | ||
|
||
import lombok.Builder; | ||
|
||
@Builder | ||
public record StickerInfo( | ||
Long stickerId, | ||
Long likeScheduleId | ||
) { | ||
|
||
} |