| | |
| | | package com.hz.crm.feign; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.crm.dto.FOrderPageDto; |
| | | import com.hz.crm.dto.OrderStatusDto; |
| | | import com.hz.crm.dto.order.refund.RefundDto; |
| | | import com.hz.crm.vo.order.OrderAddVo; |
| | | import com.hz.crm.vo.order.OrderConfirmVo; |
| | | import com.hz.crm.vo.order.OrderPayVo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | */ |
| | | @RequestMapping("/order/refund") |
| | | Result refundOrder(@RequestBody(required = false) RefundDto refundDto); |
| | | |
| | | |
| | | /**查询列表 |
| | | * |
| | | * @param dto dto |
| | | * @return refundReturnDto实体转化 |
| | | */ |
| | | @RequestMapping("/order/list") |
| | | Result list(@RequestBody(required = false) FOrderPageDto dto); |
| | | |
| | | /** |
| | | * 用户购买订单列表 |
| | | */ |
| | | @RequestMapping("/order/user/buy/list") |
| | | Result userBuyList(@RequestBody FOrderPageDto dto); |
| | | |
| | | /** |
| | | * 积分订单确认数据 |
| | | */ |
| | | @RequestMapping("/order/integral-crm/confirm-order") |
| | | Result integralOrderConfirm(@RequestBody OrderConfirmVo orderConfirmVo); |
| | | |
| | | /** |
| | | * 积分订单下单组合数据 |
| | | */ |
| | | @RequestMapping("/order/integral/get/add-data") |
| | | Result getAddOrderData(@RequestBody OrderAddVo orderAddVo); |
| | | |
| | | /** |
| | | * 积分订单下单 |
| | | */ |
| | | @RequestMapping("/order/integral-crm/add") |
| | | Result integralOrderAdd(@RequestBody OrderAddVo orderAddVo); |
| | | |
| | | /** |
| | | * 订单支付 |
| | | */ |
| | | @RequestMapping("/pay/unify-create") |
| | | Result orderPay(@RequestBody OrderPayVo orderPayVo); |
| | | |
| | | } |