增加无桌台就餐

This commit is contained in:
2024-10-24 11:42:37 +08:00
parent 94e6794255
commit 01efaac3ab
2 changed files with 33 additions and 7 deletions

View File

@@ -7,11 +7,18 @@ import lombok.Data;
@Data
@AllArgsConstructor
public class ShopEatTypeInfoDTO {
// 是否外带
private boolean isTakeout;
// 是否快餐
private boolean isMunchies;
// 是否后付费
private boolean isDineInAfter;
// 是否先付费
private boolean isDineInBefore;
// 是否需要餐位费
private boolean needSeatFee;
// 是否无桌台下单
private boolean isNoneTable;
private TbShopInfo shopInfo;
private String useType;
private Object shopId;