Commit ce171ff754b49dea6be2ce0119a6ae689ca74c6c
1 parent
df001815ed
Exists in
master
and in
6 other branches
一贯制--团队管理列表bug
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 @
ce171ff
... | ... | @@ -73,13 +73,13 @@ |
73 | 73 | |
74 | 74 | UsersQuery usersQuery = new UsersQuery(); |
75 | 75 | List<Integer> ids=new ArrayList<>(); |
76 | + ids.add(-1); | |
76 | 77 | |
77 | 78 | for (String id : t.getDoctorIdArr()) { |
78 | 79 | if(null!=id){ |
79 | 80 | ids.add(Integer.valueOf(id)); |
80 | 81 | } |
81 | 82 | } |
82 | - | |
83 | 83 | usersQuery.setIds(ids); |
84 | 84 | List<Users> uLst=usersService.queryUsers(usersQuery); |
85 | 85 |