查询台桌携带订单信息 + 订单金额

This commit is contained in:
2024-08-22 11:03:53 +08:00
parent 8b657fdc8a
commit f2b32671b8
2 changed files with 4 additions and 1 deletions

View File

@@ -4,6 +4,8 @@ import com.chaozhanggui.system.cashierservice.entity.TbShopTable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.math.BigDecimal;
@EqualsAndHashCode(callSuper = true)
@Data
public class TbShopTableVO extends TbShopTable {
@@ -11,4 +13,5 @@ public class TbShopTableVO extends TbShopTable {
private String masterId;
private Integer orderId;
private String orderNo;
private BigDecimal orderAmount;
}