| | |
| | | return iApiMallTeamLeaderService.applyLeader(apiApplayLeaderDto); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 团长列表 |
| | | */ |
| | | @ApiOperation(value = "团长列表", notes = "团长列表") |
| | | @ApiOperation(value = "团长列表(查询当前位置商品配送范围内的所有团长)", notes = "团长列表(查询当前位置商品配送范围内的所有团长)") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiLeaderListVo.class) |
| | | }) |
| | | @PostMapping(value = "/leaderList") |
| | | public FebsResponse leaderList(@RequestBody @Valid ApiLeaderListDto apiLeaderListDto) { |
| | | return iApiMallTeamLeaderService.findSomeLeaderListInPage(apiLeaderListDto); |
| | | } |
| | | |
| | | /** |
| | | * 团长列表 |
| | | */ |
| | | @ApiOperation(value = "团长列表(查询当前经纬度在团长配送范围内的团长)", notes = "团长列表(查询当前经纬度在团长配送范围内的团长)") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiLeaderListVo.class) |
| | | }) |
| | | @PostMapping(value = "/leaderListInFence") |
| | | public FebsResponse leaderListInFence(@RequestBody @Valid ApiLeaderListDto apiLeaderListDto) { |
| | | return iApiMallTeamLeaderService.findLeaderListInPage(apiLeaderListDto); |
| | | } |
| | | |