Commit 62fa575833f0966bd7b160956154a4c35d6d0cf7

Authored by changpengfei
1 parent 266397239b

一贯制--团队管理医生null判断

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/TeamServiceImpl.java View file @ 62fa575
... ... @@ -172,7 +172,7 @@
172 172 for (TeamModel teamModel : tLst) {
173 173 List<String> docIds=teamModel.getDoctorIdArr();
174 174 for (int i = 0; i < docIds.size(); i++) {
175   - tIds.add(Integer.valueOf(docIds.get(i)));
  175 + tIds.add(Integer.valueOf((null==docIds.get(i)?"-1":docIds.get(i)));
176 176 }
177 177 }
178 178