更新了写真预约特殊产品处理

This commit is contained in:
chen-xin-zhi 2025-03-12 19:28:51 +08:00
parent cf4b1098ee
commit 06bdf661d9

View File

@ -93,7 +93,7 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
if (StringUtils.isAnyBlank(userPassword, userName, userAvatar, phone, userRole)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "存在参数为空");
}
ThrowUtils.throwIf(!RegexUtils.isPhoneInvalid(phone), ErrorCode.OPERATION_ERROR, "手机号格式错误");
ThrowUtils.throwIf(RegexUtils.isPhoneInvalid(phone), ErrorCode.OPERATION_ERROR, "手机号格式错误");
}