| | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.order.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestHeader; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | |
| | | @PostMapping(value = "/order/customer/confirm") |
| | | Result customerConfirm(@RequestBody OrderInfoDto orderInfoDto); |
| | | |
| | | /** |
| | | * 开放平台-判断订单是否支持取消已支付的订单 |
| | | */ |
| | | @PostMapping(value = "/order/cancel/verification") |
| | | Result cancelVerification(@RequestBody OrderRefundDto orderRefundDto); |
| | | /** |
| | | * 开放平台-取消订单(新) |
| | | */ |
| | | @PostMapping(value = "/order/cancel/list") |
| | | Result cancel(@RequestBody OrderRefundDto orderRefundDto); |
| | | /** |
| | | * 开放平台-根据订单id获取退款单信息 |
| | | */ |
| | | @PostMapping(value = "/order/refundNote/list") |
| | | Result noteList(@RequestBody OrderRefundDto orderRefundDto); |
| | | /** |
| | | * 开放平台-确认退款单 |
| | | */ |
| | | @PostMapping(value = "/order/refundNote/confirm") |
| | | Result noteConfirm(@RequestBody OrderRefundDto orderRefundDto); |
| | | |
| | | |
| | | } |