-
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.
Merge pull request #8 from LikeLion-12th-SKHU/colorlist
fix : moodId List로 받기, 분위기별 조회 수정#3
- Loading branch information
Showing
8 changed files
with
55 additions
and
30 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
4 changes: 3 additions & 1 deletion
4
src/main/java/net/skhu/likelion12thteam03be/post/api/dto/request/PostSaveReqDto.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,12 +1,14 @@ | ||
package net.skhu.likelion12thteam03be.post.api.dto.request; | ||
|
||
import java.util.List; | ||
|
||
public record PostSaveReqDto( | ||
String title, | ||
String content, | ||
Long locationId, | ||
Integer time, | ||
Integer price, | ||
Long categoryId, | ||
Long moodId | ||
List<Long> moodIds | ||
) { | ||
} |
4 changes: 3 additions & 1 deletion
4
src/main/java/net/skhu/likelion12thteam03be/post/api/dto/request/PostUpdateReqDto.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,12 +1,14 @@ | ||
package net.skhu.likelion12thteam03be.post.api.dto.request; | ||
|
||
import java.util.List; | ||
|
||
public record PostUpdateReqDto( | ||
String title, | ||
String content, | ||
Long locationId, | ||
Integer time, | ||
Integer price, | ||
Long categoryId, | ||
Long moodId | ||
List<Long> moodIds | ||
) { | ||
} |
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