扫码上菜实现

This commit is contained in:
张松
2025-11-25 15:32:54 +08:00
parent c5597a39dc
commit 973019dd94
6 changed files with 94 additions and 0 deletions

View File

@@ -131,6 +131,7 @@ public class OrderDetail implements Serializable {
* 状态: in-production 制作中;wait_out 待取餐;refunding 退款中; part_refund 部分退单; refund-退单; done 完成;
*/
private String status;
private String subStatus;
/**
* 当前下单次数

View File

@@ -68,4 +68,7 @@ public interface OrderInfoService extends IService<OrderInfo> {
Boolean updatePayOrderId(Long orderId, Long paymentId, String payType, String remark);
void updateOrderDetailStatus(Long orderDetailId);
}