1.代客下单 新增后付款下单

This commit is contained in:
2024-08-20 17:05:36 +08:00
parent 830271a838
commit 376af15266
7 changed files with 95 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
package cn.ysk.cashier.enums;
public enum TableStateEnum {
IDLE("idle"),
CLOSED("closed"), PAYING("paying");
private String state = "closed";
TableStateEnum(String state) {
this.state = state;
}
public String getState() {
return state;
}
}