手动执行退款接口

This commit is contained in:
2023-08-30 14:18:34 +08:00
parent b3c8b5b1a5
commit 7726384036

View File

@@ -393,4 +393,15 @@ public class TempController extends BaseController {
}
return response;
}
/**
* 手动执行退款
* 订单或余额
* https://api.jsowellcloud.com/temp/adapayRefund
*/
@PostMapping("/adapayRefund")
public RestApiResponse<?> adapayRefund(@RequestBody ApplyRefundDTO dto) {
orderService.adapayRefund(dto);
return new RestApiResponse<>();
}
}