TASK:Global Award邮箱验证

This commit is contained in:
2026-01-20 13:14:50 +08:00
parent 6bc500e78f
commit d7edc166b3
8 changed files with 140 additions and 9 deletions

View File

@@ -33,7 +33,11 @@ public enum AuthenticationOperationTypeEnum {
*/
UPDATE_USERINFO,
REGISTER;
REGISTER,
/**
* Global_Award 活动验证
*/
GLOBAL_AWARD;
public static AuthenticationOperationTypeEnum of(String name) {
return Stream.of(AuthenticationOperationTypeEnum.values()).filter(v -> v.name().equals(name)).findFirst().orElse(null);