| | |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/11/29 10:55 |
| | | */ |
| | | @FeignClient(contextId = "OrderActivityInfoClient", value = ServiceNameConstants.ORDER_SERVICE, fallbackFactory = OrderActivityInfoClientFallbackFactory.class) |
| | | @FeignClient(contextId = "OrderActivityInfoClient", value = ServiceNameConstants.OTHER_SERVICE, fallbackFactory = OrderActivityInfoClientFallbackFactory.class) |
| | | public interface OrderActivityInfoClient { |
| | | |
| | | |
| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/order-activity-info/getNowOrderActivityInfo") |
| | | R<OrderActivityInfo> getNowOrderActivityInfo(@RequestParam("vip") Integer vip); |
| | | R<List<OrderActivityInfo>> getNowOrderActivityInfo(@RequestParam("vip") Integer vip); |
| | | } |