查询所有桌台信息
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user