扫码上菜实现
This commit is contained in:
@@ -6,6 +6,23 @@ import lombok.Getter;
|
||||
* @author Administrator
|
||||
*/
|
||||
public interface TableValueConstant {
|
||||
interface OrderDetail {
|
||||
@Getter
|
||||
enum SubStatus {
|
||||
PENDING_PREP("PENDING_PREP", "待起菜"),
|
||||
READY_TO_SERVE("READY_TO_SERVE", "待出菜"),
|
||||
SENT_OUT("SENT_OUT", "已出菜"),
|
||||
DELIVERED("DELIVERED", "已上菜"),
|
||||
EXPIRED("EXPIRED", "已超时");
|
||||
private final String code;
|
||||
private final String msg;
|
||||
|
||||
SubStatus(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
}
|
||||
interface MemberExpFlow {
|
||||
@Getter
|
||||
enum Type {
|
||||
|
||||
Reference in New Issue
Block a user