KKSU
2024-07-15 4a347c0ab4b88fd792d24d30bed36b1fa769d3a2
src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java
@@ -48,12 +48,21 @@
        return new FebsResponse().success().data(dappWalletService.storageIndex());
    }
    @ApiOperation(value = "直推有效人数排名前十", notes = "直推有效人数排名前十")
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = ApiDirectInfoVo.class)
    })
    @PostMapping(value = "/directIndex")
    public FebsResponse directIndex() {
        return new FebsResponse().success().data(dappWalletService.directNumIndex());
    }
    @ApiOperation(value = "直推总业绩排名前十", notes = "直推总业绩排名前十")
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = ApiStorageInfoVo.class)
    })
    @PostMapping(value = "/directIndex")
    public FebsResponse directIndex() {
    @PostMapping(value = "/directIndexV2")
    public FebsResponse directIndexV2() {
        return new FebsResponse().success().data(dappWalletService.directIndex());
    }