fix: 只选择餐位费不允许创建订单

This commit is contained in:
张松
2024-11-07 11:07:53 +08:00
parent 6fd8a4f7d0
commit 68a8f6d3c5
2 changed files with 5 additions and 1 deletions

View File

@@ -42,6 +42,9 @@ public interface TableConstant {
Status(String value) {
this.value = value;
}
public boolean equalsVals(String value) {
return this.value.equals(value);
}
}
@Getter