查询所有桌台信息

This commit is contained in:
GYJ
2024-07-08 18:24:24 +08:00
parent 8245ae9b8c
commit 52ebdfa90b
3 changed files with 52 additions and 39 deletions

View File

@@ -32,7 +32,7 @@ public class ShopTableSaleInfoVo {
this.tableName = tableName;
this.areaId = areaId;
this.areaName = areaName;
this.orderCount = orderCount;
this.orderAmount = orderAmount;
this.orderCount = orderCount == null ? 0 : orderCount;
this.orderAmount = orderAmount == null ? 0 : orderAmount;
}
}