From d4c5c993fbc8063c145846501aa9596063f61503 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期二, 05 三月 2024 14:22:37 +0800
Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0

---
 cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java |   24 ++++++++++++++++++------
 1 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java
index 44ae8f8..d92e7f9 100644
--- a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java
+++ b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/controller/WorldCupController.java
@@ -186,7 +186,7 @@
             @ApiImplicitParam(name = "code", value = "扫码结果", required = true, dataType = "String"),
             @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....")
     })
-    public ResultUtil<Map<String, String>> getDeviceInformation(@RequestBody String code){
+    public ResultUtil<Map<String, String>> getDeviceInformation(String code){
         /**
          * {
          *     "scan_type": 0, // 扫码类型:1000:游戏,1001:课程,1002:场地
@@ -270,7 +270,7 @@
             @ApiImplicitParam(name = "lat", value = "纬度", required = true, dataType = "string"),
             @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....")
     })
-    public ResultUtil<WorldCupInfo> getWorldCupInfo(@RequestBody Integer id, @RequestBody String lon, @RequestBody String lat){
+    public ResultUtil<WorldCupInfo> getWorldCupInfo(Integer id,String lon, String lat){
         WorldCupInfo worldCupInfo = worldCupService.getWorldCupInfo(id, lon, lat);
         return ResultUtil.success(worldCupInfo);
     }
@@ -404,8 +404,18 @@
             @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....")
     })
     public ResultUtil<EntrantRankVo> getEntrantRank(EntrantRank entrantRank){
-        EntrantRankVo entrantRank1 = worldCupCompetitorService.getEntrantRank(entrantRank);
-        return ResultUtil.success(entrantRank1);
+        try {
+            Integer uid = tokenUtil.getUserIdFormRedis();
+            if(null == uid){
+                return ResultUtil.success();
+            }
+            entrantRank.setAppUserId(uid);
+            EntrantRankVo entrantRank1 = worldCupCompetitorService.getEntrantRank(entrantRank);
+            return ResultUtil.success(entrantRank1);
+        }catch (Exception e){
+            e.printStackTrace();
+            return ResultUtil.runErr();
+        }
     }
 
 
@@ -451,10 +461,12 @@
     @ApiOperation(value = "获取已报名世界杯详情【2.0】", tags = {"APP-个人中心"})
     @ApiImplicitParams({
             @ApiImplicitParam(name = "id", value = "列表中的id", required = true, dataType = "String"),
+            @ApiImplicitParam(name = "lon", value = "经度", required = true, dataType = "string"),
+            @ApiImplicitParam(name = "lat", value = "纬度", required = true, dataType = "string"),
             @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....")
     })
-    public ResultUtil<MyWorldCupInfo> getMyWorldCupInfo(String id){
-        MyWorldCupInfo myWorldCupInfo = worldCupPaymentParticipantService.getMyWorldCupInfo(id);
+    public ResultUtil<MyWorldCupInfo> getMyWorldCupInfo(String id, String lon, String lat){
+        MyWorldCupInfo myWorldCupInfo = worldCupPaymentParticipantService.getMyWorldCupInfo(id, lon, lat);
         return ResultUtil.success(myWorldCupInfo);
     }
 

--
Gitblit v1.7.1