|
@ -203,4 +203,15 @@ public class DoctorConsultEndpoint extends EnvelopRestEndpoint {
|
|
|
prescriptionService.pickVideoPrescripitonWaitingPeople(outpatientCode,doctor);
|
|
|
return success("请求成功");
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = BaseHospitalRequestMapping.DodtorIM.updateDoctorConsultStatus)
|
|
|
@ApiOperation(value = "修改医生咨询在线状态", notes = "修改医生咨询在线状态")
|
|
|
public Envelop updateDoctorConsultStatus(
|
|
|
@ApiParam(name = "consultStatus", value = "1在线接诊,0下线", defaultValue = "1")
|
|
|
@RequestParam(value = "consultStatus", required = true) String consultStatus,
|
|
|
@ApiParam(name = "doctor", value = "医生CODE")
|
|
|
@RequestParam(value = "doctor",required = true) String doctor){
|
|
|
imService.updateDoctorConsultStatus(consultStatus,doctor);
|
|
|
return success("请求成功");
|
|
|
}
|
|
|
}
|