|
@ -178,4 +178,12 @@ public class DoctorConsultEndpoint extends EnvelopRestEndpoint {
|
|
|
@RequestParam(value = "patientCode",required = false) String patientCode)throws Exception {
|
|
|
return success("请求成功",imService.getConsultInfoAndPatientInfo(consult,patientCode));
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.DodtorIM.getOutpatientidByConsoultCode)
|
|
|
@ApiOperation(value = "根据咨询CODE获取就诊记录ID", notes = "根据咨询CODE获取就诊记录ID")
|
|
|
public Envelop getOutpatientidByConsoultCode(
|
|
|
@ApiParam(name = "consult", value = "咨询CODE")
|
|
|
@RequestParam(value = "consult",required = false) String consult)throws Exception {
|
|
|
return success("请求成功",imService.getOutpatientidByConsoultCode(consult));
|
|
|
}
|
|
|
}
|