订单状态统一修改

This commit is contained in:
liang.chao 2024-12-01 12:52:51 +08:00
parent 6c76126020
commit 092cdeb03c
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class OrderController extends BaseController {
*/
@ApiOperation(value = "获取单个订单详情")
@GetMapping("/getOrderDetailsById")
public AjaxResult getOrderDetailsById(OrderDetailDto dto) {
public AjaxResult getOrderDetailsById(OrderDetailDto dto) throws Exception {
if (dto.getOrderId() != null) {
OrderInfoDto orderInfoDto = orderService.getOrderDetailsById(dto);
return success(orderInfoDto);