| | |
| | | import com.hz.his.dto.marketing.OrderCancelDto; |
| | | import com.hz.his.dto.marketing.OrderDiscountDto; |
| | | import com.hz.his.dto.marketing.OrderPartRefundDto; |
| | | import com.hz.his.dto.marketing.OrderPayMarketingDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | @PostMapping(value = "/order/apply/part/refund") |
| | | Result applyPartRefund(@RequestBody OrderPartRefundDto orderPartRefundDto); |
| | | |
| | | /** |
| | | * 订单支付申请 |
| | | */ |
| | | @PostMapping(value = "/order/apply/order/pay") |
| | | Result orderPay(@RequestBody OrderPayMarketingDto orderPayMarketingDto); |
| | | |
| | | } |