1.代客下单 挂起订单

This commit is contained in:
2024-08-17 15:21:45 +08:00
parent e938911e4a
commit 89582d3bc8
5 changed files with 38 additions and 9 deletions

View File

@@ -10,5 +10,6 @@ public class PendingCountVO {
private Long pendingAt;
private BigDecimal totalAmount;
private Integer totalCount;
private Integer totalNumber;
private Integer orderId;
}

View File

@@ -0,0 +1,11 @@
package cn.ysk.cashier.vo;
import cn.ysk.cashier.pojo.order.TbCashierCart;
import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data
public class TbCashierCartVO extends TbCashierCart {
private String specSnap;
}