| | |
| | | }) |
| | | @PostMapping(value = "/leaderList") |
| | | public FebsResponse leaderList(@RequestBody @Valid ApiLeaderListDto apiLeaderListDto) { |
| | | return new FebsResponse().success().data(iApiMallTeamLeaderService.findLeaderListInPage(apiLeaderListDto)); |
| | | return iApiMallTeamLeaderService.findLeaderListInPage(apiLeaderListDto); |
| | | } |
| | | |
| | | /** |
| | |
| | | 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)); |
| | | } |
| | | |
| | | |
| | | } |