|
@@ -192,6 +192,13 @@ public class AuthController extends ControllerSupport {
|
|
|
smsCodeService.sendSmsCode(phone);
|
|
|
}
|
|
|
|
|
|
+ @WithoutStackTrace(true)
|
|
|
+ @ApiOperation(value = "校验验证码", notes = "")
|
|
|
+ @PostMapping("/checkSmsCode")
|
|
|
+ public void checkSmsCode(@RequestParam String phone, @RequestParam String verificationCode) {
|
|
|
+ smsCodeService.checkSmsCode(phone, verificationCode);
|
|
|
+ }
|
|
|
+
|
|
|
@WithoutStackTrace(true)
|
|
|
@ApiOperation(value = "学生绑定手机号", notes = "")
|
|
|
@PostMapping("/bindSecurityPhone")
|