|
@ -51,6 +51,16 @@ public class PatientController { |
|
|
return JsonResponse.newInstance().ok(patientList); |
|
|
return JsonResponse.newInstance().ok(patientList); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
|
|
|
@ApiOperation(value = "通过身份证号模糊查询患者信息(当前康复中心下)", notes = "zy:") |
|
|
|
|
|
@RequestMapping(value = "/vague", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
|
|
public JsonResponse<PatientVo.Patient> vaguePatientByIdCard(@ApiParam @Validated @RequestBody QueryDto<PatientDto.VaguePatient> params) { |
|
|
|
|
|
log.info("查看患者的详细信息:{}",params); |
|
|
|
|
|
List<PatientVo.Patient> patient = patientService.vaguePatientByIdCard(params.getParam(),params.getUserId()); |
|
|
|
|
|
log.info("查看患者的详细信息成功:{}",patient); |
|
|
|
|
|
return JsonResponse.newInstance().ok(patient); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@MustLogin |
|
|
@MustLogin |
|
|
@ApiOperation(value = "查看患者的详细信息", notes = "zy:") |
|
|
@ApiOperation(value = "查看患者的详细信息", notes = "zy:") |
|
|
@RequestMapping(value = "/detail", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
@RequestMapping(value = "/detail", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|