调整 User 项目结构

增加管理后台查看 User 分页接口
This commit is contained in:
YunaiV
2019-03-10 19:07:00 +08:00
parent 9d29b71a7b
commit 1afea13f56
37 changed files with 785 additions and 96 deletions

View File

@@ -0,0 +1,16 @@
package cn.iocoder.common.framework.util;
/**
* 校验工具类
*/
public class ValidationUtil {
public static boolean isMobile(String mobile) {
if (mobile == null || mobile.length() != 11) {
return false;
}
// TODO 芋艿,后面完善手机校验
return true;
}
}