1.修改OTP控制器接口地址

This commit is contained in:
2025-08-15 14:45:02 +08:00
parent 6429606fda
commit d0a5c97dcc
5 changed files with 5 additions and 4 deletions

View File

@@ -19,8 +19,8 @@ public class OTPController {
@Resource
private OTPService otpService;
@GetMapping("/getopt")
@GetMapping("/getotp")
public ResponseData<Object> getOTP() {
return ResponseData.success(otpService.getOPT());
return ResponseData.success(otpService.getOTP());
}
}