订单详细

This commit is contained in:
2025-03-04 15:34:43 +08:00
parent 39c0e43ceb
commit 800dfd956d
4 changed files with 6 additions and 14 deletions

View File

@@ -44,7 +44,7 @@ public class AdminOrderController {
}
@GetMapping("/getOrderById")
public CzgResult<Map<String, Object>> getOrderById(Long orderId) {
public CzgResult<HistoryOrderVo> getOrderById(Long orderId) {
return orderInfoService.getOrderDetails(orderId);
}

View File

@@ -41,7 +41,7 @@ public class UserOrderController {
}
@GetMapping("/getOrderById")
public CzgResult<Map<String, Object>> getOrderById(Long orderId) {
public CzgResult<HistoryOrderVo> getOrderById(Long orderId) {
return orderInfoService.getOrderDetails(orderId);
}