!1017 bugfix-导入系统用户时,增加注解校验过程,与界面添加和修改用户保持一致

Merge pull request !1017 from 尹先生/master-jdk17
This commit is contained in:
芋道源码
2024-07-29 11:36:45 +00:00
committed by Gitee
3 changed files with 45 additions and 3 deletions

View File

@ -103,6 +103,10 @@ public class RandomUtils {
return randomString() + "@qq.com";
}
public static String randomMobile() {
return "13800138" + RandomUtil.randomNumbers(3);
}
public static String randomURL() {
return "https://www.iocoder.cn/" + randomString();
}