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