支付相关
This commit is contained in:
@@ -35,22 +35,22 @@ public class OrderRest extends ApiBaseAction {
|
||||
}
|
||||
|
||||
@PostMapping("/pay")
|
||||
ResultBean pay(@RequestBody OrderQuery query) {
|
||||
ResultBean pay(OrderQuery query) {
|
||||
return orderService.pay(query, getClientIp());
|
||||
}
|
||||
|
||||
@PostMapping("wxPayNotify")
|
||||
ResultBean wxPayNotify(HttpServletRequest request,HttpServletResponse response) throws IOException {
|
||||
return orderService.wxPayNotify(request,response);
|
||||
ResultBean wxPayNotify(HttpServletRequest request, HttpServletResponse response) throws IOException {
|
||||
return orderService.wxPayNotify(request, response);
|
||||
}
|
||||
|
||||
@PostMapping("selectOrder")
|
||||
ResultBean selectOrder(@RequestBody OrderQuery query) {
|
||||
ResultBean selectOrder(OrderQuery query) {
|
||||
return orderService.selectOrder(query);
|
||||
}
|
||||
|
||||
@PostMapping("orderQuery")
|
||||
ResultBean orderQuery(@RequestBody OrderQuery query){
|
||||
ResultBean orderQuery(OrderQuery query) {
|
||||
return orderService.orderQuery(query);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user