This commit is contained in:
2025-11-28 17:30:39 +08:00
parent a3435a56b2
commit af8d528a2f
2 changed files with 8 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
package com.czg.order.vo;
import lombok.Data;
import java.util.List;
/**
@@ -18,13 +19,15 @@ public class KitchenFoodVO {
private String productName;
private String skuName;
private Long categoryId;
String categoryName;
private List<KitchenFoodItemVO> foodItems;
record KitchenFoodItemVO(
//员工名称
Long orderId, String staffName,
String tableName,String areaName,Long orderDetailId,Long categoryId,String categoryName,
//员工名称
Long orderId, String staffName,
String tableName, String areaName, Long orderDetailId,
//下单数 //菜品状态 待起菜 PENDING_PREP 待出菜 READY_TO_SERVE 已出菜 SENT_OUT 已上菜 DELIVERED
Long num, String subStatus,
//下单时间 起菜时间 出菜时间 上菜时间