This commit is contained in:
张良(004796)
2024-01-03 18:30:13 +08:00
parent 1641b5f871
commit b22b4fba48
20 changed files with 393 additions and 65 deletions

View File

@@ -0,0 +1,18 @@
package com.ruoyi.cai.pay;
import lombok.Getter;
@Getter
public enum MemberStatusEnum {
NORMAL(0,"可用"),
EXPIRE(1,"过期"),
FAIL(2,"不可用"),
;
private final Integer code;
private final String name;
MemberStatusEnum(Integer code, String name) {
this.code = code;
this.name = name;
}
}