|
@ -67,6 +67,16 @@ public class YkyyPrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
|
return success(vos);
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.findOutpatientInfo)
|
|
|
@ApiOperation(value = " 查询单条门诊就诊记录")
|
|
|
public ObjEnvelop findOutpatientInfo(@ApiParam(name = "patient", value = "居民id")
|
|
|
@RequestParam(value = "patient",required = false) String patient,
|
|
|
@ApiParam(name = "conNo", value = "就诊次数")
|
|
|
@RequestParam(value = "conNo",required = false) String conNo)throws Exception{
|
|
|
WlyyOutpatientVO obj = prescriptionService.findOutpatientInfo(patient,conNo,demoFlag);
|
|
|
return success(obj);
|
|
|
}
|
|
|
|
|
|
|
|
|
@PostMapping(value = BaseHospitalRequestMapping.YkyyPrescription.appointmentRevisit)
|
|
|
@ApiOperation(value = "居民发起复诊", notes = "居民发起复诊")
|