From 21dfd5f59bfe4b6245c50d14773f9060ee88fb89 Mon Sep 17 00:00:00 2001
From: 彭雪彬 <1724387007@qq.com>
Date: Tue, 22 Jul 2025 20:40:06 +0800
Subject: [PATCH] 骑手订单新增手机号查询

---
 oying-system/src/main/java/com/oying/modules/hwc/rest/SwiftPassController.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/hwc/rest/SwiftPassController.java b/oying-system/src/main/java/com/oying/modules/hwc/rest/SwiftPassController.java
index f544bdb..9718207 100644
--- a/oying-system/src/main/java/com/oying/modules/hwc/rest/SwiftPassController.java
+++ b/oying-system/src/main/java/com/oying/modules/hwc/rest/SwiftPassController.java
@@ -1,7 +1,7 @@
 package com.oying.modules.hwc.rest;
 
 import com.oying.annotation.rest.AnonymousPostMapping;
-import com.oying.modules.hwc.service.SwiftPassService;
+import com.oying.modules.hwc.service.CallbackService;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
 import lombok.RequiredArgsConstructor;
@@ -22,17 +22,17 @@
 @RequestMapping("/api/swiftPass")
 public class SwiftPassController {
 
-    private final SwiftPassService swiftPassService;
+    private final CallbackService callbackService;
 
     @ApiOperation("HWS支付回调")
     @AnonymousPostMapping(value = "/alipayCallback")
     public void alipayCallback(HttpServletRequest request, HttpServletResponse response) {
-        swiftPassService.alipayCallback(request, response);
+        callbackService.alipayCallback(request, response);
     }
 
     @ApiOperation("HWS退款回调")
     @AnonymousPostMapping(value = "/returnNotify")
     public void returnNotify(HttpServletRequest request, HttpServletResponse response) {
-        swiftPassService.returnNotify(request, response);
+        callbackService.returnNotify(request, response);
     }
 }

--
Gitblit v1.9.3