1.代客下单 会员点单 取消点单

This commit is contained in:
2024-08-19 16:15:01 +08:00
parent b5fc56c0aa
commit ea86b42847
3 changed files with 51 additions and 3 deletions

View File

@@ -180,4 +180,15 @@ public class TbPlaceController {
return ResponseEntity.ok(tbShopTableService.pay(payDTO));
}
@AnonymousAccess
@PutMapping("/updateVip")
@Log("代客下单 查询购物车")
@ApiOperation("代客下单 查询购物车 /shop/table")
public ResponseEntity<Object> updateVip(
@Validated @RequestBody UpdateVipDTO updateVipDTO
) {
return ResponseEntity.ok(tbShopTableService.updateVip(updateVipDTO));
}
}