Skip to content

Commit

Permalink
Update QuoteController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
tank3a authored Aug 28, 2023
1 parent 6c5f50b commit 91c5b63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class QuoteController {
@Operation(summary = "추천 견적 그래프 데이터를 제공하는 API", description = "현재 내 견적과 비교하여 유사한 견적(최대 4개)의 ID와 판매량을 반환하는 API입니다.")
@ApiResponse(responseCode = "200", description = "성공", content = @Content(schema = @Schema(implementation = HistoryShortDto.class)))
@PostMapping("/list")
// @Cacheable(value = "recommendList")
@Cacheable(value = "recommendList")
public HistoryShortDto getRecommendedList(@RequestBody QuoteRequestDto quoteRequestDto) {
HistoryShortDto myQuote = quoteService.getMyQuoteShortData(quoteRequestDto);
List<HistoryShortDto> subList = quoteService.getSuggestedQuoteShortData(quoteRequestDto);
Expand Down

0 comments on commit 91c5b63

Please sign in to comment.