Commit fcbd10a10b3dc2c7c75601ad51b7afa543b89111

Authored by shiyang
1 parent 81a521d258
Exists in master and in 1 other branch dev

update

Showing 1 changed file with 1 additions and 1 deletions

talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java View file @ fcbd10a
... ... @@ -686,7 +686,7 @@
686 686 public BaseResponse getPatientByIdno(String idno){
687 687 BaseResponse baseResponse=new BaseResponse();
688 688 try {
689   - LymsPatient patient=lymsPatientService.getOne(new QueryWrapper<LymsPatient>().eq("idno", idno));
  689 + PatientInfo patient=patientInfoService.getOne(new QueryWrapper<PatientInfo>().eq("idno", idno));
690 690 baseResponse.setObject(null==patient?null:patient);
691 691 baseResponse.setErrormsg("成功");
692 692 } catch (Exception e) {