| | |
| | | import com.ruoyi.common.core.constant.ServiceNameConstants; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | |
| | | @PostMapping("/user-coupon/getCouponInfo") |
| | | R<CouponInfoVo> getCouponInfo(@RequestParam("userCouponId") Long userCouponId); |
| | | |
| | | @GetMapping("/user-coupon/getCouponCount") |
| | | R<Long> getCouponCount(@RequestParam("couponId") Integer couponId); |
| | | } |