-
Notifications
You must be signed in to change notification settings - Fork 1
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 #106 from oduck-team/feature/103
별점 평가 여부 조회시 점수도 포함하도록 수정 #103
- Loading branch information
Showing
6 changed files
with
18 additions
and
15 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
4 changes: 2 additions & 2 deletions
4
src/main/java/io/oduck/api/domain/starRating/service/StarRatingService.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,9 +1,9 @@ | ||
package io.oduck.api.domain.starRating.service; | ||
|
||
import io.oduck.api.domain.starRating.dto.StarRatingResDto.RatedDateTimeRes; | ||
import io.oduck.api.domain.starRating.dto.StarRatingResDto.RatedRes; | ||
|
||
public interface StarRatingService { | ||
boolean createScore(Long memberId, Long animeId, int score); | ||
RatedDateTimeRes checkRated(Long memberId, Long animeId); | ||
RatedRes checkRated(Long memberId, Long animeId); | ||
boolean updateScore(Long memberId, Long animeId, int score); | ||
} |
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