支付相关
This commit is contained in:
@@ -35,22 +35,22 @@ public class OrderRest extends ApiBaseAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/pay")
|
@PostMapping("/pay")
|
||||||
ResultBean pay(@RequestBody OrderQuery query) {
|
ResultBean pay(OrderQuery query) {
|
||||||
return orderService.pay(query, getClientIp());
|
return orderService.pay(query, getClientIp());
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("wxPayNotify")
|
@PostMapping("wxPayNotify")
|
||||||
ResultBean wxPayNotify(HttpServletRequest request,HttpServletResponse response) throws IOException {
|
ResultBean wxPayNotify(HttpServletRequest request, HttpServletResponse response) throws IOException {
|
||||||
return orderService.wxPayNotify(request,response);
|
return orderService.wxPayNotify(request, response);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("selectOrder")
|
@PostMapping("selectOrder")
|
||||||
ResultBean selectOrder(@RequestBody OrderQuery query) {
|
ResultBean selectOrder(OrderQuery query) {
|
||||||
return orderService.selectOrder(query);
|
return orderService.selectOrder(query);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("orderQuery")
|
@PostMapping("orderQuery")
|
||||||
ResultBean orderQuery(@RequestBody OrderQuery query){
|
ResultBean orderQuery(OrderQuery query) {
|
||||||
return orderService.orderQuery(query);
|
return orderService.orderQuery(query);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,4 +27,4 @@ image:
|
|||||||
url:
|
url:
|
||||||
prefix: http://192.168.1.120:8111/upload/
|
prefix: http://192.168.1.120:8111/upload/
|
||||||
domain:
|
domain:
|
||||||
urlPrex: http://192.168.0.111:7777
|
urlPrex: http://192.168.1.133:7777
|
||||||
Reference in New Issue
Block a user