Merge branch 'dev/dev_xp' into dev/dev

# Conflicts:
#	src/main/resources/paypal-sandbox.properties
This commit is contained in:
2024-04-11 11:45:03 +08:00
7 changed files with 119 additions and 25 deletions

View File

@@ -45,8 +45,8 @@ public class PayPalCheckoutController {
@ApiOperation(value = "查询指定订单")
@PostMapping(value = "/trade/query/{orderNo}")
public Response<String> queryOrder(@PathVariable String orderNo) throws SerializeException {
String s = payPalCheckoutService.queryOrder(orderNo);
public Response<Order> queryOrder(@PathVariable String orderNo) throws SerializeException {
Order s = payPalCheckoutService.queryOrder(orderNo);
return Response.success(s);
}