霸王餐相关接口

This commit is contained in:
2024-10-26 14:26:20 +08:00
parent 3573f6a0d6
commit ca28f90260
8 changed files with 155 additions and 123 deletions

View File

@@ -16,4 +16,19 @@ public interface TableConstant {
}
}
}
class OrderInfo {
@Getter
public enum Status {
REFUNDING("refunding"), REFUND("refund"), CLOSED("closed"), CREATE("create"),
UNPAID("unpaid"), PAYING("paying"), RETURN("return");
private final String value;
Status(String value) {
this.value = value;
}
}
}
}