|
@ -1115,11 +1115,11 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
|
@ApiParam(name = "withWork", value = "传1带排班,其他不带")
|
|
|
@RequestParam(value = "withWork", required = false) String withWork,
|
|
|
@ApiParam(name = "patient", value = "患者code")
|
|
|
@RequestParam(value = "patient", required = false) String patient) {
|
|
|
@RequestParam(value = "patient", required = false) String patient) throws Exception {
|
|
|
try {
|
|
|
return success(prescriptionService.findDoctorInfo(doctor,idcard, withWork, patient));
|
|
|
} catch (Exception e) {
|
|
|
return failedObjEnvelopException(e);
|
|
|
throw new Exception(e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
|