|
@ -278,6 +278,14 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
|
@RequestParam(value = "deptCode", required = true)String deptCode) {
|
|
|
return prescriptionService.findDeptDesc(orgCode,deptCode);
|
|
|
}
|
|
|
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.findDeptByOrgCode)
|
|
|
@ApiOperation(value = "查询机构下所有科室", notes = "查询机构下所有科室")
|
|
|
public MixEnvelop findDeptByOrgCode(@ApiParam(name = "orgCode", value = "机构code")
|
|
|
@RequestParam(value = "orgCode", required = true)String orgCode) {
|
|
|
return prescriptionService.findDeptByOrgCode(orgCode);
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.findDeptByKeyWord)
|
|
|
@ApiOperation(value = "查询有所有已开放的科室", notes = "查询有所有已开放的科室")
|