| | |
| | | return happyActivityService.orderDelete(id); |
| | | } |
| | | |
| | | @ApiOperation(value = "核销门票", notes = "核销门票") |
| | | @ApiOperation(value = "核销门票-详细信息", notes = "核销门票-详细信息") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiCheckOrderVo.class) |
| | | }) |
| | |
| | | return happyActivityService.checkOrder(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "核销门票-确认核销", notes = "核销门票-确认核销") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiCheckOrderVo.class) |
| | | }) |
| | | @PostMapping(value = "/insureOrder") |
| | | public FebsResponse insureOrder(@RequestBody @Validated ApiCheckOrderDto dto) { |
| | | |
| | | return happyActivityService.insureOrder(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "我的报名-评价", notes = "我的报名-评价") |
| | | @PostMapping(value = "/addComment") |
| | | public FebsResponse addComment(@RequestBody @Validated ApiPayOrderAddCommentDto dto) { |