From 23e3602b4f3ebde8665c3ab3a56ef81b8d671e0d Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Wed, 17 Sep 2025 19:17:21 +0800
Subject: [PATCH] feat: 增加商品库存设置功能

---
 oying-system/src/main/java/com/oying/modules/rider/rest/WxRiderController.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/rider/rest/WxRiderController.java b/oying-system/src/main/java/com/oying/modules/rider/rest/WxRiderController.java
index 27f8b21..e49e0bb 100644
--- a/oying-system/src/main/java/com/oying/modules/rider/rest/WxRiderController.java
+++ b/oying-system/src/main/java/com/oying/modules/rider/rest/WxRiderController.java
@@ -57,8 +57,8 @@
     @ApiOperation("同步查询第三方骑手信息 LY")
     // @PreAuthorize("@el.check('riderInfo:edit')")
     public ResponseEntity<?> syncRiderSourceInfo(@PathVariable String sourcePlatform) {
-        riderInfoService.syncRiderSourceInfo(sourcePlatform);
-        return ResponseEntity.ok(R.success("操作成功"));
+        R result = riderInfoService.syncRiderSourceInfo(sourcePlatform);
+        return ResponseEntity.ok(result);
     }
 
     @GetMapping("getRiderWalletInfo/{riderId}")

--
Gitblit v1.9.3