finish order list

This commit is contained in:
Cauchy
2023-10-20 08:55:06 +08:00
parent 7005fd8b4d
commit 21ca9f8d7d
3 changed files with 20 additions and 4 deletions

View File

@@ -99,7 +99,7 @@ public class BuyOrderController {
* @param requestVo request value object
* @return R
*/
@RequestMapping(path = "orderList", method = RequestMethod.POST)
@RequestMapping(path = "/orderList", method = RequestMethod.POST)
public R orderList(@RequestBody BuyOrderListRequestVo requestVo) {
List<BuyOrderListResponseVo> response = buyOrderService.orderList(requestVo);
return R.ok().put("result", response);