Commit 5c6ed2ef authored by hongguangwu's avatar hongguangwu

MVP1.7.0 优化

parent 25ccbb1d
......@@ -332,7 +332,11 @@ public class TCheckBankNoServiceImpl extends ServiceImpl<TCheckBankNoMapper, TCh
}
}
} else {
noCurlist.add(check);
if (check.getBankNo().length() > 50) {
bankMap.put(check.getBankNo() + CommonConstants.DOWN_LINE_STRING + check.getName(), false);
} else {
noCurlist.add(check);
}
}
}
List<TCheckBankNo> saveList = new ArrayList<>();
......
......@@ -271,8 +271,12 @@ public class TCheckMobileServiceImpl extends ServiceImpl<TCheckMobileMapper, TCh
if (cur != null) {
backMap.put(check, cur);
} else {
phones.append(check).append(CommonConstants.COMMA_STRING);
noCurlist.add(check);
if (check.length() > 11) {
backMap.put(check, false);
} else {
phones.append(check).append(CommonConstants.COMMA_STRING);
noCurlist.add(check);
}
}
}
if (phones.length() > 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment