1.创建订单同步保存用户id

2.代客下单订单不重复出票
3.订单支付完毕清楚当前台桌缓存订单号
This commit is contained in:
2024-08-31 16:47:12 +08:00
parent 1ee3c33fa0
commit 7be5d2354f
6 changed files with 85 additions and 39 deletions

View File

@@ -103,6 +103,8 @@ public class TbOrderInfo implements Serializable {
private String isWinner;
private String shopName;
private String useType;
//根据状态返回 需付款 已付款 未付款 已退
private String description;
@@ -188,4 +190,4 @@ public class TbOrderInfo implements Serializable {
this.createdAt = System.currentTimeMillis();
this.isAccepted = 1;
}
}
}