TASK:Global Award邮箱验证

This commit is contained in:
2026-01-21 14:13:33 +08:00
parent d7edc166b3
commit 64cc29f456
3 changed files with 35 additions and 14 deletions

View File

@@ -47,8 +47,8 @@ public class GlobalAwardController {
}
@GetMapping("/checkCode")
public Response<CheckOTPVO> checkOTP(@RequestParam("email") String email, @RequestParam("code") String code) {
return Response.success(globalAwardService.checkOTP(email, code));
public Response<CheckOTPVO> checkCode(@RequestParam("email") String email, @RequestParam("code") String code) {
return Response.success(globalAwardService.checkCode(email, code));
}
}