| | |
| | | import com.hz.his.dto.user.UserLevelDto; |
| | | import com.hz.his.dto.user.card.UserCardDto; |
| | | import com.hz.his.dto.user.card.UserCardUsedDto; |
| | | import com.hz.his.dto.user.coupon.GoodsCanUseCouponDto; |
| | | import com.hz.his.dto.user.coupon.OrderCanUseCouponDto; |
| | | import com.hz.his.dto.user.coupon.UserCanUseCouponDto; |
| | | import com.hz.his.dto.user.coupon.UserCouponDto; |
| | |
| | | import com.hz.his.dto.user.project.UserPackageDto; |
| | | import com.hz.his.dto.user.project.UserProjectDto; |
| | | import com.hz.his.dto.user.project.UserProjectUsedDto; |
| | | import com.hz.his.dto.user.promotion.UserPromotionUsedDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | |
| | | /** |
| | | * 获取用户促销使用记录 |
| | | * @param orderItemNo 子订单号 |
| | | * */ |
| | | @PostMapping(value = "/user/promotion/used") |
| | | Result userPromotionUsed(@RequestParam("orderItemNo") String orderItemNo); |
| | | Result userPromotionUsed(@RequestBody UserPromotionUsedDto userPromotionUsedDto); |
| | | |
| | | |
| | | /** |
| | |
| | | Result userCanUseCoupon(@RequestBody UserCanUseCouponDto userCanUseCouponDto); |
| | | |
| | | /** |
| | | * 获取商品可用优惠券 |
| | | * */ |
| | | @PostMapping(value = "/goods/can/use/coupon") |
| | | Result goodsCanUseCoupon(@RequestBody GoodsCanUseCouponDto goodsCanUseCouponDto); |
| | | |
| | | /** |
| | | * 判断订单是否可用该优惠券 |
| | | */ |
| | | @PostMapping(value = "/order/can/use/coupon") |