xiaoyong931011
2021-05-15 1089e7795ac98fc0486694e5116f44ee28807f7c
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 = "/getAgentList")
    public Result getTeamList(@RequestBody @Validated TeamInfoDto teamInfoDto) {
        return yunDingService.getTeamList(teamInfoDto);
    }