统计台桌售出信息
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user