用户端删除订单

This commit is contained in:
wangw 2025-03-19 17:06:58 +08:00
parent 5a1335b0a7
commit df1d20b7c3
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class UserOrderController {
AssertUtil.isNull(id, "{}不能为空", "订单Id");
orderInfoService.updateChain()
.set(OrderInfo::getIsDel, 1)
.eq(OrderInfoVo::getId, id)
.eq(OrderInfo::getId, id)
.update();
return CzgResult.success();
}