后厨 页面 按台桌查看 按商品查看

This commit is contained in:
2025-11-26 18:15:32 +08:00
parent 7167163076
commit 8a9d096781
6 changed files with 337 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
package com.czg.order.vo;
import lombok.Data;
import java.util.List;
/**
* 后厨台桌列表
*
* @author ww
* @description
*/
@Data
public class KitchenFoodVO {
private Long productId;
//是否临时商品 0-否 1-是
private int isTemporary;
private String productName;
private String skuName;
private List<KitchenFoodItemVO> foodItems;
record KitchenFoodItemVO(
//员工名称
Long orderId, String staffName,
String tableName,String areaName,Long orderDetailId,
//下单数 //菜品状态 待起菜 PENDING_PREP 待出菜 READY_TO_SERVE 已出菜 SENT_OUT 已上菜 DELIVERED
Long num, String subStatus,
//下单时间 起菜时间 出菜时间 上菜时间
String orderTime, String startOrderTime, String dishOutTime, String foodServeTime
) {
}
}

View File

@@ -0,0 +1,35 @@
package com.czg.order.vo;
import lombok.Data;
import java.util.List;
/**
* 后厨台桌列表
*
* @author ww
* @description
*/
@Data
public class KitchenTableFoodVO {
private Long productId;
private String productName;
private String skuName;
//是否临时商品 0-否 1-是
private int isTemporary;
private String staffName;
private Long orderDetailId;
private Long num;
//菜品状态 待起菜 PENDING_PREP 待出菜 READY_TO_SERVE 已出菜 SENT_OUT 已上菜 DELIVERED
private String subStatus;
//下单时间
private String orderTime;
//起菜时间
private String startOrderTime;
//出菜时间
private String dishOutTime;
//上菜时间
private String foodServeTime;
}

View File

@@ -0,0 +1,45 @@
package com.czg.order.vo;
import lombok.Data;
/**
* 后厨台桌列表
*
* @author ww
* @description
*/
@Data
public class KitchenTableVO {
/**
* 订单ID
*/
private Long orderId;
/**
* 台桌ID
*/
private Long tableId;
/**
* 台桌编码
*/
private String tableCode;
/**
* 台桌名称
*/
private String tableName;
/**
* 区域ID
*/
private Long areaId;
/**
* 区域名称
*/
private String areaName;
/**
* 待上菜数
*/
private Integer pendingDishCount;
}