Merge branch 'dev/dev_xp' into dev/3.1_release_merge

This commit is contained in:
2026-01-21 14:14:17 +08:00
3 changed files with 35 additions and 14 deletions

View File

@@ -155,8 +155,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));
}
}