xiaoyong931011
2022-09-16 786742ed3d630ddb1244cf41f39c0c6aaf929ad2
src/main/java/cc/mrbird/febs/mall/controller/ApiMallTeamLeaderController.java
@@ -44,7 +44,7 @@
    })
    @PostMapping(value = "/leaderList")
    public FebsResponse leaderList(@RequestBody @Valid ApiLeaderListDto apiLeaderListDto) {
        return new FebsResponse().success().data(iApiMallTeamLeaderService.findLeaderListInPage(apiLeaderListDto));
        return iApiMallTeamLeaderService.findLeaderListInPage(apiLeaderListDto);
    }
    /**
@@ -136,5 +136,17 @@
        return iApiMallTeamLeaderService.leaderProfit();
    }
    /**
     * 团长查看已提成收益
     */
    @ApiOperation(value = "团长查看已提成收益", notes = "团长查看已提成收益")
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = ApiOrderProfitVo.class)
    })
    @PostMapping(value = "/leaderProfitList")
    public FebsResponse leaderProfitList(@RequestBody ApiOrderProfitDto apiOrderProfitDto) {
        return new FebsResponse().success().data(iApiMallTeamLeaderService.findLeaderProfitListInPage(apiOrderProfitDto));
    }
}