优化台桌统计

This commit is contained in:
GYJ
2024-08-08 10:41:12 +08:00
parent 9e13d1ff98
commit b218436a1c
4 changed files with 87 additions and 20 deletions

View File

@@ -0,0 +1,27 @@
package cn.ysk.cashier.vo;
import lombok.Data;
import java.util.stream.Stream;
/**
* @author GYJ
*/
@Data
public class ShopTableVo {
private String qrcode;
private Object shopId;
private Object tableId;
private Object tableName;
private Object areaId;
private Object areaName;
public ShopTableVo(String qrcode, Object shopId, Object tableId, Object tableName, Object areaId, Object areaName) {
this.qrcode = qrcode;
this.shopId = shopId;
this.tableId = tableId;
this.tableName = tableName;
this.areaId = areaId;
this.areaName = areaName;
}
}