1.代客下单,支付,挂起,下单接口开发

This commit is contained in:
2024-08-16 11:12:25 +08:00
parent 62ca02cdc4
commit d32f9705a0
12 changed files with 462 additions and 138 deletions

View File

@@ -0,0 +1,17 @@
package cn.ysk.cashier.vo;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class CarVO {
private String masterId;
private String productName;
private String uuid;
private Integer shopId;
private String tableId;
private Integer userId;
private Long pendingAt;
private BigDecimal totalAmount;
}