This commit is contained in:
Cauchy
2023-10-23 15:01:07 +08:00
parent e400fa6eba
commit d9fd3d5a5b
3 changed files with 21 additions and 43 deletions

View File

@@ -107,6 +107,12 @@ public class BuyOrderController {
return R.ok().put("result", page);
}
/**
* 订单详情
*
* @param orderSn 订单号
* @return R
*/
@RequestMapping(path = "/orderDetail", method = RequestMethod.GET)
public R orderDetail(@RequestParam("orderSn") String orderSn) {
BuyOrderResponseVo buyOrderResponseVo = buyOrderService.orderDetail(orderSn);