|
@@ -24,7 +24,7 @@ public class SmsCodeServiceImpl implements SmsCodeService {
|
|
|
public void sendSmsCode(String phone) {
|
|
|
SendSmsReq req = new SendSmsReq();
|
|
|
req.setPhone(phone);
|
|
|
- int code = 1000 + RandomUtils.nextInt(1, 9999);
|
|
|
+ int code = 1000 + RandomUtils.nextInt(1, 8999);
|
|
|
req.setCode(String.valueOf(code));
|
|
|
|
|
|
int smsEffectivetime = PropertiesUtil.getInt(PropKeys.SEND_VERIFICATION_CODE_EFFECTIVE_TIME,
|