|
@@ -43,18 +43,18 @@ public class SmsCodeController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "发送登录短信验证码")
|
|
|
- @ApiImplicitParams({ @ApiImplicitParam(name = "phone", value = "手机号", required = true, dataType = "String"),
|
|
|
+ @ApiImplicitParams({ @ApiImplicitParam(name = "mobile", value = "手机号", required = true, dataType = "String"),
|
|
|
@ApiImplicitParam(name = "code", value = "验证码", required = true, dataType = "String") })
|
|
|
@PostMapping(value = "/sendSmsCode")
|
|
|
- public HttpResponseResult<Object> sendLoginVerifyCode1(String phone, String code) throws Exception {
|
|
|
- if(StringUtils.isEmpty(phone) || StringUtils.isEmpty(code)){
|
|
|
+ public HttpResponseResult<Object> sendLoginVerifyCode1(String mobile, String code) throws Exception {
|
|
|
+ if(StringUtils.isEmpty(mobile) || StringUtils.isEmpty(code)){
|
|
|
return failed(SecurityConstants.PARAM_VERIFY_EXCEPTION);
|
|
|
}
|
|
|
- String redisKey = MessageTypeEnum.KAPTCHA_SESSION_KEY + phone;
|
|
|
+ String redisKey = MessageTypeEnum.KAPTCHA_SESSION_KEY + mobile;
|
|
|
RBucket<String> bucket = redissonClient.getBucket(redisKey);
|
|
|
if(bucket.isExists()){
|
|
|
if(StringUtils.equalsIgnoreCase(bucket.get(),code)){
|
|
|
- smsCodeService.sendValidCode(phone);
|
|
|
+ smsCodeService.sendValidCode(mobile);
|
|
|
return succeed();
|
|
|
}
|
|
|
}
|