订单状态统一

This commit is contained in:
2024-10-29 17:21:50 +08:00
parent fe7e8d4ed9
commit d2e1174646
2 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ public interface TableConstant {
@Getter
enum Status {
REFUNDING("refunding"), REFUND("refund"), CLOSED("closed"), CREATE("create"),
UNPAID("unpaid"), PAYING("paying"), RETURN("return"), CANCEL("cancel");
UNPAID("unpaid"), PAYING("paying"), RETURN("return"), CANCELLED("cancelled");
private final String value;
Status(String value) {
this.value = value;