mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-04 12:18:42 +08:00 
			
		
		
		
	【优化】SYSTEM:短信验证码前置补零对其endCode长度
This commit is contained in:
		@@ -67,7 +67,8 @@ public class SmsCodeServiceImpl implements SmsCodeService {
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        // 创建验证码记录
 | 
			
		||||
        String code = String.valueOf(randomInt(smsCodeProperties.getBeginCode(), smsCodeProperties.getEndCode() + 1));
 | 
			
		||||
        String code = String.format("%0" + smsCodeProperties.getEndCode().toString().length() + "d",
 | 
			
		||||
                randomInt(smsCodeProperties.getBeginCode(), smsCodeProperties.getEndCode() + 1));
 | 
			
		||||
        SmsCodeDO newSmsCode = SmsCodeDO.builder().mobile(mobile).code(code).scene(scene)
 | 
			
		||||
                .todayIndex(lastSmsCode != null && isToday(lastSmsCode.getCreateTime()) ? lastSmsCode.getTodayIndex() + 1 : 1)
 | 
			
		||||
                .createIp(ip).used(false).build();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user