|
@ -385,9 +385,10 @@ public class BaseDiseaseHospitalController extends EnvelopRestEndpoint {
|
|
|
|
|
|
@RequestMapping(value = "selectPlanServerDoctor_IJK", method = RequestMethod.POST)
|
|
|
@ApiOperation("康复管理-康复计划的服务医生")
|
|
|
public Envelop selectPlanServerDoctor_IJK(@ApiParam(name = "planId", value = "康复计划ID") @RequestParam(value = "planId", required = true) String planId) {
|
|
|
public Envelop selectPlanServerDoctor_IJK(@ApiParam(name = "planId", value = "康复计划ID") @RequestParam(value = "planId", required = true) String planId,
|
|
|
@ApiParam(name = "doctorCode", value = "医生id") @RequestParam(value = "doctorCode", required = true) String doctorCode) {
|
|
|
try {
|
|
|
JSONObject result = wlyyBusinessService.selectPlanServerDoctor_IJK(planId);
|
|
|
JSONObject result = wlyyBusinessService.selectPlanServerDoctor_IJK(planId,doctorCode);
|
|
|
return success(result);
|
|
|
} catch (Exception e) {
|
|
|
return failedException(e);
|