微信支付宝退款

This commit is contained in:
wuchunlei
2023-12-19 17:04:05 +08:00
parent 032cfc9266
commit 229ce39c5e
18 changed files with 617 additions and 159 deletions

View File

@@ -50,8 +50,8 @@ public class AliPayController {
* 支付宝退款
*/
@RequestMapping("/refund")
public R refund(@RequestBody ReFundDTO reFundDTO) {
String refund = aliPayService.refund(reFundDTO);
public R refund(@RequestBody Map<String,Object> params) {
String refund = aliPayService.refund(params);
return R.ok().put("msg",refund);
}