| | |
| | | import com.ruoyi.system.api.factory.PromotionFallbackFactory; |
| | | import java.util.List; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * @param source |
| | | * @return |
| | | */ |
| | | @PostMapping("/inner/promotion-wish-recommend/{id}") |
| | | @GetMapping("/inner/promotion-wish-recommend/{id}") |
| | | R<PromotionWishRecommend> getPromotionWishRecommend(@PathVariable("id") Long id, |
| | | @RequestHeader(SecurityConstants.FROM_SOURCE) String source); |
| | | |