From c005ec7ef2e8a3f0db2a0c23b7ea298b2ead7987 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期三, 27 八月 2025 16:19:36 +0800 Subject: [PATCH] PC跳转小程序支付 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TServiceController.java | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TServiceController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TServiceController.java index 8a6e953..b31d1bb 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TServiceController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TServiceController.java @@ -78,9 +78,8 @@ // 查询服务费缴纳情况 @GetMapping("/getServiceStatus/{userId}") public R<String> getServiceStatus(@PathVariable("userId") Integer userId) { - Long userid = tokenService.getLoginUser().getUserid(); ServicePay servicePayBefore = servicePayService.lambdaQuery() - .eq(ServicePay::getUserId, userid) + .eq(ServicePay::getUserId, userId) .eq(ServicePay::getPayStatus,2) .eq(ServicePay::getDelFlag,0) .orderByDesc(ServicePay::getCreateTime) -- Gitblit v1.7.1