-
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 #146 from PROTOTYNE/revert-145-125-feat-설문조사-조회-삭제…
…-api-구현 [Revert] "125 feat 설문조사 조회 삭제 api 구현"
- Loading branch information
Showing
11 changed files
with
60 additions
and
328 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,5 +23,4 @@ public static EntReviewDTO.ReviewResponse toReviewResponse(Feedback feedback, Us | |
.build(); | ||
} | ||
|
||
|
||
} |
9 changes: 3 additions & 6 deletions
9
src/main/java/com/prototyne/Enterprise/service/ReviewService/EntReviewService.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,15 +1,12 @@ | ||
package com.prototyne.Enterprise.service.ReviewService; | ||
|
||
import com.prototyne.Enterprise.web.dto.EntAllReviewResponseDTO; | ||
import com.prototyne.Enterprise.web.dto.EntReviewDTO; | ||
import com.prototyne.Users.web.dto.ReviewDTO; | ||
|
||
import java.util.List; | ||
|
||
public interface EntReviewService { | ||
EntAllReviewResponseDTO.ReviewResponse getAllReviews(String token, Long eventId); | ||
EntReviewDTO.ReviewResponse getReviewByUserId(String token, Long eventId, Long userId); | ||
EntReviewDTO.ReviewResponse updatePenaltyByUserId(String token, Long eventId, Long userId); | ||
ReviewDTO.ReviewResponseDTO updateReviewQuestion(String token, Long productId, ReviewDTO.ReviewResponseDTO request); | ||
List<EntReviewDTO.ReviewResponse> getAllReviews(String token, Long eventId); | ||
EntReviewDTO.ReviewResponse getReviewByUserId(String token, Long investmentId, Long userId); | ||
EntReviewDTO.ReviewResponse updatePenaltyByUserId(String token, Long investmentId, Long userId); | ||
|
||
} |
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
Oops, something went wrong.