统计台桌售出信息

This commit is contained in:
GYJ
2024-07-06 16:40:21 +08:00
parent 48950bcf14
commit 5e16de0bc8
5 changed files with 81 additions and 3 deletions

View File

@@ -0,0 +1,38 @@
package cn.ysk.cashier.vo;
import lombok.Data;
/**
* @author GYJ
*/
@Data
public class ShopTableSaleInfoVo {
private Integer id;
private Object shopId;
private Object tableId;
private Object tableName;
private Object areaId;
private Object areaName;
private Object orderCount;
private Object orderAmount;
public ShopTableSaleInfoVo(Integer id, Object shopId, Object tableId, Object tableName,
Object areaId, Object areaName, Object orderCount, Object orderAmount) {
this.id = id;
this.shopId = shopId;
this.tableId = tableId;
this.tableName = tableName;
this.areaId = areaId;
this.areaName = areaName;
this.orderCount = orderCount;
this.orderAmount = orderAmount;
}
}