|
@@ -179,11 +179,11 @@ public class TaskLogicServiceImpl implements TaskLogicService {
|
|
|
userArchivesParam.setMobileNumber(userArchivesImportDto.getMobileNumber());
|
|
|
String email = userArchivesImportDto.getEmail();
|
|
|
if (email != null && email.length() > 0) {
|
|
|
- Pattern pattern = Pattern.compile(SystemConstant.EMAIL_REGEX);
|
|
|
- Matcher matcher = pattern.matcher(email);
|
|
|
- if (!matcher.matches()) {
|
|
|
- throw ExceptionResultEnum.ERROR.exception("导入数据中的 email : " + email + "不符合规范");
|
|
|
- }
|
|
|
+// Pattern pattern = Pattern.compile(SystemConstant.EMAIL_REGEX);
|
|
|
+// Matcher matcher = pattern.matcher(email);
|
|
|
+// if (!matcher.matches()) {
|
|
|
+// throw ExceptionResultEnum.ERROR.exception("导入数据中的 email : " + email + "不符合规范");
|
|
|
+// }
|
|
|
userArchivesParam.setEmail(email);
|
|
|
}
|
|
|
|