修改接待患者人数的ajax的键,因为有重复

master
MKing 2023-11-05 20:58:25 +08:00
parent caa57d7e52
commit c0948fd5ef
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ public class SysUserController extends BaseController
public AjaxResult findDoctorPraise(@PathVariable("medicalDepartmentId") Long medicalDepartmentId){ public AjaxResult findDoctorPraise(@PathVariable("medicalDepartmentId") Long medicalDepartmentId){
AjaxResult ajax = AjaxResult.success(); AjaxResult ajax = AjaxResult.success();
List<SysDoctor> sysDoctorList = userService.findDoctorPraise(medicalDepartmentId); List<SysDoctor> sysDoctorList = userService.findDoctorPraise(medicalDepartmentId);
ajax.put("sysDoctorList",sysDoctorList); ajax.put("sysList",sysDoctorList);
return ajax; return ajax;
} }