查询订单详情接口修改
This commit is contained in:
@@ -50,16 +50,14 @@ public class OrderController {
|
||||
|
||||
/**
|
||||
* 订单详情
|
||||
* @param shopId 店铺id
|
||||
* @param orderId 订单id
|
||||
* @return 订单信息
|
||||
*/
|
||||
@GetMapping ("/orderInfo")
|
||||
public Result getCartByOrderId(
|
||||
@RequestParam Integer shopId,
|
||||
@RequestParam Integer orderId
|
||||
){
|
||||
return Result.successWithData(orderService.orderDetail(shopId, orderId));
|
||||
return Result.successWithData(orderService.orderDetail(orderId));
|
||||
}
|
||||
|
||||
@GetMapping("/orderList")
|
||||
|
||||
Reference in New Issue
Block a user