|
@ -207,8 +207,10 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
|
@ApiParam(name = "endDate", value = "结束时间,yyyy-MM-dd HH:mm:ss")
|
|
|
@RequestParam(value = "endDate", required = false)String endDate,
|
|
|
@ApiParam(name = "key", value = "关键字搜索,医生名字/科室名称/专长")
|
|
|
@RequestParam(value = "key", required = false)String key) {
|
|
|
return success(prescriptionService.findDoctorByHospitalAndDept(orgCode,dept,chargeType,doctorCode,outpatientType,startDate,endDate,key));
|
|
|
@RequestParam(value = "key", required = false)String key,
|
|
|
@ApiParam(name = "consultStatus", value = "是否在线")
|
|
|
@RequestParam(value = "consultStatus", required = false)String consultStatus) {
|
|
|
return success(prescriptionService.findDoctorByHospitalAndDept(orgCode,dept,chargeType,doctorCode,outpatientType,startDate,endDate,key,consultStatus));
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = BaseHospitalRequestMapping.Prescription.appointmentRevisit)
|
|
@ -352,12 +354,14 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
|
@RequestParam(value = "endDate", required = false)String endDate,
|
|
|
@ApiParam(name = "key", value = "关键字搜索,医生名字/科室名称/专长")
|
|
|
@RequestParam(value = "key", required = false)String key,
|
|
|
@ApiParam(name = "consultStatus", value = "是否在线")
|
|
|
@RequestParam(value = "consultStatus", required = false)String consultStatus,
|
|
|
@ApiParam(name = "page", value = "第几页")
|
|
|
@RequestParam(value = "page", required = true)Integer page,
|
|
|
@ApiParam(name = "size", value = "每页大小")
|
|
|
@RequestParam(value = "size", required = true)Integer size) {
|
|
|
|
|
|
return success(prescriptionService.findDoctorWithWork(orgCode,dept,chargeType,doctorCode,outpatientType,startDate,endDate,key,page,size));
|
|
|
return success(prescriptionService.findDoctorWithWork(orgCode,dept,chargeType,doctorCode,outpatientType,startDate,endDate,key,consultStatus,page,size));
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.findDoctorWithMouthWork)
|