|
@ -222,6 +222,17 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
|
@RequestParam(value = "consultDeptFlag", required = false)String consultDeptFlag) {
|
|
|
return success(prescriptionService.findDeptByHospital(orgCode,dept,consultDeptFlag));
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.findDeptByKeyWord)
|
|
|
@ApiOperation(value = "查询有所有已开放的科室", notes = "查询有所有已开放的科室")
|
|
|
public ListEnvelop findDeptByKeyWord(@ApiParam(name = "keyWord", value = "关键字")
|
|
|
@RequestParam(value = "keyWord", required = false)String keyWord,
|
|
|
@ApiParam(name = "page", value = "第几页")
|
|
|
@RequestParam(value = "page",required = true) Integer page,
|
|
|
@ApiParam(name = "pagesize", value = "分页大小")
|
|
|
@RequestParam(value = "pagesize",required = true) Integer pagesize) {
|
|
|
return success(prescriptionService.findDeptByKeyWord(keyWord,page,pagesize));
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.findDoctorByHospitalAndDept)
|
|
|
@ApiOperation(value = "查询部门下医生", notes = "查询部门下医生")
|