|
|
@@ -444,7 +444,7 @@ public class TechProjectServiceImpl extends BaseMybatisDao<TechProjectMapper> im
|
|
|
String regex = "^(1[1-9][0-9])\\d{8}$";
|
|
|
Pattern p = Pattern.compile(regex);
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
- if (null!=a.getContactMobile()) {
|
|
|
+ if (null!=a&&null!=a.getContactMobile()) {
|
|
|
Matcher m = p.matcher(a.getContactMobile());
|
|
|
if ( m.matches()) {
|
|
|
String mobile=a.getContactMobile();
|