|
@ -268,5 +268,13 @@ public class PatientConsultEndpoint extends EnvelopRestEndpoint {
|
|
|
@RequestParam(value = "consult",required = false) String consult)throws Exception {
|
|
|
return success("请求成功",imService.getTopic(consult));
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.PatientIM.getConsultCodeByOutpatientId)
|
|
|
@ApiOperation(value = "根据复诊记录ID获取咨询CODE", notes = "根据复诊记录ID获取咨询CODE")
|
|
|
public Envelop getConsultCodeByOutpatientId(
|
|
|
@ApiParam(name = "outpatientid", value = "复诊ID")
|
|
|
@RequestParam(value = "outpatientid",required = true) String outpatientid)throws Exception {
|
|
|
return success("请求成功",imService.getConsultCodeByOutpatientId(outpatientid));
|
|
|
}
|
|
|
|
|
|
}
|