Commit 8ce6e7ed45c99144269503f24e1c86effd6d6aab
1 parent
3fe7948e8d
Exists in
master
更新医生信息
Showing 1 changed file with 4 additions and 1 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/ChatGroupController.java
View file @
8ce6e7e
... | ... | @@ -53,6 +53,9 @@ |
53 | 53 | @Autowired |
54 | 54 | private LymsTkrecordService lymsTkrecordService; |
55 | 55 | |
56 | + @Autowired | |
57 | + private AppgetdoctorlistInfoService appgetdoctorlistInfoService; | |
58 | + | |
56 | 59 | /** |
57 | 60 | * 添加或删除聊天组 |
58 | 61 | * |
... | ... | @@ -232,7 +235,7 @@ |
232 | 235 | } |
233 | 236 | param.clear(); |
234 | 237 | param.put("dlogin",chatgroup.getTarget()); |
235 | - List<LymsDoctor> dLst=lymsDoctorService.listByMap(param); | |
238 | + List<AppgetdoctorlistInfo> dLst=appgetdoctorlistInfoService.listByMap(param); | |
236 | 239 | if(dLst.size()>0){ |
237 | 240 | payload.put("doc",dLst.get(0)); |
238 | 241 | } |