KKSU
2024-04-17 829f629756e5402bcd3e9f6ef1f9c6dbffbabb11
src/main/java/com/xcong/excoin/modules/yunding/controller/YunDingController.java
@@ -55,6 +55,15 @@
    }
    /**
     * 获取XCH当前价
     */
    @ApiOperation(value = "获取XCH当前价")
    @GetMapping(value = "/getXchPrice")
    public Result getXchPrice() {
        return yunDingService.getXchPrice();
    }
    /**
     * 获取USDT余额
     */
    @ApiOperation(value = "获取USDT余额")
@@ -151,6 +160,26 @@
        return yunDingService.bugAgentLevel(bugAgentLeveldto);
    }
    /**
     * 我的团队信息
     */
    @ApiOperation(value = "我的团队信息")
    @ApiResponses({
            @ApiResponse(code = 0, message = "success", response = TeamVo.class)
    })
    @PostMapping(value = "/getTeamList")
    public Result getTeamList(@RequestBody @Validated TeamInfoDto teamInfoDto) {
        return yunDingService.getTeamList(teamInfoDto);
    }