| | |
| | | import cc.mrbird.febs.common.annotation.ControllerEndpoint; |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.mall.dto.*; |
| | | import cc.mrbird.febs.mall.dto.activity.ApiCheckOrderDto; |
| | | import cc.mrbird.febs.mall.service.IApiMallTeamLeaderService; |
| | | import cc.mrbird.febs.mall.vo.*; |
| | | import cc.mrbird.febs.mall.vo.activity.ApiCheckOrderVo; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiResponse; |
| | |
| | | return iApiMallTeamLeaderService.happyLeaderList(); |
| | | } |
| | | |
| | | @ApiOperation(value = "自提点核销", notes = "自提点核销") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiHappyOrderLeaderVo.class) |
| | | }) |
| | | @PostMapping(value = "/checkOrder") |
| | | public FebsResponse checkOrder(@RequestBody @Validated ApiHappyOrderLeaderDto dto) { |
| | | |
| | | return iApiMallTeamLeaderService.checkOrder(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "自提点核销-确认核销", notes = "自提点核销-确认核销") |
| | | @PostMapping(value = "/insureOrder") |
| | | public FebsResponse insureOrder(@RequestBody @Validated ApiHappyOrderLeaderInsureDto dto) { |
| | | |
| | | return iApiMallTeamLeaderService.insureOrder(dto); |
| | | } |
| | | |
| | | /** |
| | | * 申请团长 |
| | | */ |