Commit 17fe7bf65003bfc57e2a194592d138eb012fcb54
1 parent
62fa575833
Exists in
master
and in
6 other branches
一贯制--团队管理医生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 @
17fe7bf
... | ... | @@ -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((null==docIds.get(i)?"-1":docIds.get(i))); | |
175 | + tIds.add(Integer.valueOf(null==docIds.get(i)?"-1":docIds.get(i))); | |
176 | 176 | } |
177 | 177 | } |
178 | 178 |