添加再次发送短信接口
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.ruoyi.common.utils;
|
||||
|
||||
import cn.hutool.core.util.RandomUtil;
|
||||
|
||||
/**
|
||||
* 验证码通用工具类(全项目复用)
|
||||
*/
|
||||
public class RandomCodeUtils {
|
||||
|
||||
/**
|
||||
* 生成 6 位数字验证码
|
||||
*/
|
||||
public static String generateSixCode() {
|
||||
return RandomUtil.randomNumbers(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* 生成指定位数数字验证码
|
||||
*/
|
||||
public static String generateNumberCode(int length) {
|
||||
return RandomUtil.randomNumbers(length);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user