1.代客下单先付款后付款操作

This commit is contained in:
2024-08-21 14:56:08 +08:00
parent b7708d82e1
commit fbea2c6670
6 changed files with 61 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
package com.chaozhanggui.system.cashierservice.bean;
public enum TableStateEnum {
IDLE("idle"),
CLOSED("closed"), PAYING("paying"), PENDING("pending");
private String state = "closed";
TableStateEnum(String state) {
this.state = state;
}
public String getState() {
return state;
}
}