创建订单保存sendType

This commit is contained in:
2024-09-27 10:37:57 +08:00
parent 501970a89b
commit 19eacd1550
6 changed files with 54 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
package com.chaozhanggui.system.cashierservice.entity.dto;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
@Data
public class ClearTableDTO {
@NotNull
private Integer shopId;
@NotBlank
private String tableId;
}

View File

@@ -13,4 +13,5 @@ public class ShopEatTypeInfoDTO {
private boolean isDineInBefore;
private TbShopInfo shopInfo;
private String useType;
private String sendType;
}