| | |
| | | import io.swagger.annotations.ApiParam; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.PutMapping; |
| | |
| | | * @return MgtOrderReturnRequestVO |
| | | */ |
| | | @ApiOperation("查看详情") |
| | | @PostMapping("/detail/{id}") |
| | | @GetMapping("/detail/{id}") |
| | | public R<MgtOrderReturnRequestVO> getOrderReturnRequestDetail( |
| | | @ApiParam(name = "id", value = "售后id", required = true) @PathVariable("id") Long id) { |
| | | return R.ok(orderReturnRequestService.getOrderReturnRequestDetail(id)); |