代客下单就餐模式判断
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package cn.ysk.cashier.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public enum ShopInfoTypeEnums {
|
||||
MUNCHIES("munchies"),
|
||||
RESTAURANT("restaurant");
|
||||
private final String value;
|
||||
|
||||
ShopInfoTypeEnums(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user